//------------------------------------------------------------------------------
// This is auto-generated code.
//------------------------------------------------------------------------------
// This code was generated by Entity Developer tool using NHibernate template.
// Code is generated on: 2016/4/29 下午 04:39:04
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//------------------------------------------------------------------------------
using System;
namespace CCSTrace.TPower.DMMS.Model.EOS
{
///
/// There are no comments for TaiPower.Dmm.Model.EOS.EVENTRECORDEX in the schema.
///
public partial class EVENTRECORDEX {
#region Extensibility Method Definitions
///
/// There are no comments for OnCreated in the schema.
///
partial void OnCreated();
public override bool Equals(object obj)
{
EVENTRECORDEX toCompare = obj as EVENTRECORDEX;
if (toCompare == null)
{
return false;
}
if (!Object.Equals(this.CASEID, toCompare.CASEID))
return false;
if (!Object.Equals(this.DSUFID, toCompare.DSUFID))
return false;
return true;
}
public override int GetHashCode()
{
int hashCode = 13;
hashCode = (hashCode * 7) + CASEID.GetHashCode();
hashCode = (hashCode * 7) + DSUFID.GetHashCode();
return hashCode;
}
#endregion
///
/// There are no comments for EVENTRECORDEX constructor in the schema.
///
public EVENTRECORDEX()
{
OnCreated();
}
///
/// There are no comments for CASEID in the schema.
///
public virtual long CASEID
{
get;
set;
}
///
/// There are no comments for DSUFID in the schema.
///
public virtual long DSUFID
{
get;
set;
}
///
/// There are no comments for FSC in the schema.
///
public virtual System.Nullable FSC
{
get;
set;
}
///
/// There are no comments for UFID in the schema.
///
public virtual System.Nullable UFID
{
get;
set;
}
///
/// There are no comments for TPCLID in the schema.
///
public virtual string TPCLID
{
get;
set;
}
///
/// There are no comments for FDR in the schema.
///
public virtual string FDR
{
get;
set;
}
}
}