using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("xhs_valvemain")] [SugarTable("xhs_valvemain")] public class ValveMain : BaseModel, ISorter, System.ICloneable { /// /// /// public ValveMain() { } /// /// /// public ValveMain(ValveMain rhs) : base(rhs) { this.ID = rhs.ID; this.Description = rhs.Description; this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.SortCode = rhs.SortCode; this.SeriesID = rhs.SeriesID; this.Name = rhs.Name; this.CreateName = rhs.CreateName; this.CreateTime = rhs.CreateTime; this.Coefficient = rhs.Coefficient; } public void Reset(ValveMain rhs) { this.ID = rhs.ID; this.Description = rhs.Description; this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.SortCode = rhs.SortCode; this.Name = rhs.Name; this.CreateName = rhs.CreateName; this.CreateTime = rhs.CreateTime; this.Coefficient = rhs.Coefficient; this.SeriesID = rhs.SeriesID; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 创建人 /// public string CreateName { get; set; } /// /// 创建时间 /// public string CreateTime { get; set; } /// /// 口径 /// public string Caliber { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 材料 /// public string Material { get; set; } /// /// 系数 /// public string Coefficient { get; set; } /// /// 说明 /// public string? Description { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// /// public PumpMain Clone() { return (PumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }