using Yw.Entity;
namespace HStation.Entity
{
///
/// 阀门映射
///
[SysType("xhs_valvemap")]
[SugarTable("xhs_valvemap")]
public class ValveGroupAndMainMap : BaseEntity, ISorter, System.ICloneable
{
///
///
///
public ValveGroupAndMainMap()
{ }
///
///
///
public ValveGroupAndMainMap(ValveGroupAndMainMap rhs) : base(rhs)
{
this.ID = rhs.ID;
this.ValveGroupID = rhs.ValveGroupID;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
this.ValveMainID = rhs.ValveMainID;
}
///
/// 阀门组ID
///
public long ValveGroupID { get; set; }
///
/// 阀门型号ID
///
public long ValveMainID { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public PumpGroupAndMainMap Clone()
{
return (PumpGroupAndMainMap)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}