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