using Yw.Model; namespace HStation.Model { /// /// 阀门产品 /// [SysType("assets-valve-part-main")] public class AssetsValvePartMain : BaseModel, ICode, ISorter, System.ICloneable { /// /// /// public AssetsValvePartMain() { } /// /// /// public AssetsValvePartMain(AssetsValvePartMain rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.NO = rhs.NO; this.Code = rhs.Code; this.SortCode = rhs.SortCode; } /// /// /// public void Reset(AssetsValvePartMain rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.NO = rhs.NO; this.Code = rhs.Code; this.SortCode = rhs.SortCode; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 产品编号 /// public string NO { get; set; } /// /// 产品图号 /// public string Code { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// /// public AssetsValvePartMain Clone() { return (AssetsValvePartMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }