using Yw.Entity; namespace HStation.Entity { /// /// 阀门产品 /// [SysType("assets-valve-part-main")] [SugarTable("assets_valve_part_main")] public class AssetsValvePartMain : BaseEntity, 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; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 产品编号 /// [SugarColumn(Length = 100, IsNullable = true)] public string NO { get; set; } /// /// 产品图号 /// [SugarColumn(Length = 255, IsNullable = true)] public string Code { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// /// public AssetsValvePartMain Clone() { return (AssetsValvePartMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }