using Yw.Entity; namespace HStation.Entity { /// /// 泵属性值 /// [SysType("xhs_pumppropcontent")] [SugarTable("xhs_pumppropcontent")] public class PumpPropContent : BaseEntity, System.ICloneable { public PumpPropContent() { } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 泵型号ID /// public long MainID { get; set; } /// /// 泵产品ID /// public long PartID { get; set; } /// /// 属性ID /// public long PropID { get; set; } /// /// 属性值 /// public string PropValue { get; set; } /// /// /// public PumpMain Clone() { return (PumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }