//------------------------------------------------------------------------------
|
// This is auto-generated code.
|
//------------------------------------------------------------------------------
|
// This code was generated by Entity Developer tool using NHibernate template.
|
// Code is generated on: 2016/4/29 下午 04:28:50
|
//
|
// Changes to this file may cause incorrect behavior and will be lost if
|
// the code is regenerated.
|
//------------------------------------------------------------------------------
|
|
using System;
|
|
namespace CCSTrace.TPower.DMMS.Model.BaseDB
|
{
|
|
/// <summary>
|
/// There are no comments for TaiPower.Dmm.Model.CONNECTIVITY in the schema.
|
/// </summary>
|
public partial class CONNECTIVITY {
|
|
#region Extensibility Method Definitions
|
|
/// <summary>
|
/// There are no comments for OnCreated in the schema.
|
/// </summary>
|
partial void OnCreated();
|
|
public override bool Equals(object obj)
|
{
|
CONNECTIVITY toCompare = obj as CONNECTIVITY;
|
if (toCompare == null)
|
{
|
return false;
|
}
|
|
if (!Object.Equals(this.FSC, toCompare.FSC))
|
return false;
|
if (!Object.Equals(this.UFID, toCompare.UFID))
|
return false;
|
|
return true;
|
}
|
|
public override int GetHashCode()
|
{
|
int hashCode = 13;
|
hashCode = (hashCode * 7) + FSC.GetHashCode();
|
hashCode = (hashCode * 7) + UFID.GetHashCode();
|
return hashCode;
|
}
|
|
#endregion
|
/// <summary>
|
/// There are no comments for CONNECTIVITY constructor in the schema.
|
/// </summary>
|
public CONNECTIVITY()
|
{
|
OnCreated();
|
}
|
|
|
/// <summary>
|
/// There are no comments for FSC in the schema.
|
/// </summary>
|
public virtual int FSC
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for UFID in the schema.
|
/// </summary>
|
public virtual long UFID
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for N1 in the schema.
|
/// </summary>
|
public virtual System.Nullable<long> N1
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for N2 in the schema.
|
/// </summary>
|
public virtual System.Nullable<long> N2
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for FDR1 in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> FDR1
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for FDR2 in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> FDR2
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for DIR in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> DIR
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for OHUG in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> OHUG
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for OSTATUS in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> OSTATUS
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for PHASE in the schema.
|
/// </summary>
|
public virtual System.Nullable<int> PHASE
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for X in the schema.
|
/// </summary>
|
public virtual System.Nullable<double> X
|
{
|
get;
|
set;
|
}
|
|
|
/// <summary>
|
/// There are no comments for Y in the schema.
|
/// </summary>
|
public virtual System.Nullable<double> Y
|
{
|
get;
|
set;
|
}
|
}
|
|
}
|