//------------------------------------------------------------------------------
|
// 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;
|
using System.Collections;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Collections.Generic;
|
|
namespace TaiPower.Dmm.Model.EOS
|
{
|
|
/// <summary>
|
/// There are no comments for TaiPower.Dmm.Model.EOS.EVENTRECORDEX in the schema.
|
/// </summary>
|
public partial class EVENTRECORDEX {
|
|
#region Extensibility Method Definitions
|
|
/// <summary>
|
/// There are no comments for OnCreated in the schema.
|
/// </summary>
|
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
|
/// <summary>
|
/// There are no comments for EVENTRECORDEX constructor in the schema.
|
/// </summary>
|
public EVENTRECORDEX()
|
{
|
OnCreated();
|
}
|
|
|
/// <summary>
|
/// There are no comments for CASEID in the schema.
|
/// </summary>
|
public virtual long CASEID
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for DSUFID in the schema.
|
/// </summary>
|
public virtual long DSUFID
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for FSC in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> FSC
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for UFID in the schema.
|
/// </summary>
|
public virtual System.Nullable<long> UFID
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for TPCLID in the schema.
|
/// </summary>
|
public virtual string TPCLID
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for FDR in the schema.
|
/// </summary>
|
public virtual string FDR
|
{
|
get;
|
set;
|
}
|
}
|
|
}
|