using Yw.Model; namespace HStation.Model { /// /// /// [SysType("assets_pumpseries_manufacturer_mapping")] [SugarTable("assets_pumpseries_manufacturer_mapping")] public class AssetsPumpSeriesManufacturerMapping : BaseModel, IParas, IFlags, ITagName, System.ICloneable { /// /// /// public AssetsPumpSeriesManufacturerMapping() { } /// /// /// public AssetsPumpSeriesManufacturerMapping(AssetsPumpSeriesManufacturerMapping rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.ManufacturerID = rhs.ManufacturerID; this.Paras = rhs.Paras; this.TagName = rhs.TagName; this.Flags = rhs.Flags; this.Description = rhs.Description; } public void Reset(AssetsPumpSeriesManufacturerMapping rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.ManufacturerID = rhs.ManufacturerID; this.Paras = rhs.Paras; this.TagName = rhs.TagName; this.Flags = rhs.Flags; this.Description = rhs.Description; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 厂商ID /// public long ManufacturerID { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public AssetsPumpSeries Clone() { return (AssetsPumpSeries)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }