using Yw.Entity; namespace HStation.Entity { /// /// /// [SysType("assets_exchangerseries_manufacturer_mapping")] [SugarTable("assets_exchangerseries_manufacturer_mapping")] public class AssetsExchangerSeriesManufacturerMapping : BaseEntity, IParas, IFlags, ITagName, System.ICloneable { /// /// /// public AssetsExchangerSeriesManufacturerMapping() { } /// /// /// public AssetsExchangerSeriesManufacturerMapping(AssetsExchangerSeriesManufacturerMapping 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; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 厂商ID /// public long ManufacturerID { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public AssetsExchangerSeries Clone() { return (AssetsExchangerSeries)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }