using Yw.Entity; namespace HStation.Entity { /// /// /// [SysType("assets-compressorseries-manufacturer-mapping")] [SugarTable("assets_compressorseries_manufacturer_mapping")] public class AssetsCompressorSeriesManufacturerMapping : BaseEntity , IParas, IFlags, ITagName, System.ICloneable { /// /// /// public AssetsCompressorSeriesManufacturerMapping() { } /// /// /// public AssetsCompressorSeriesManufacturerMapping(AssetsCompressorSeriesManufacturerMapping rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.ManufacturerID = rhs.ManufacturerID; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.Description = rhs.Description; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 厂家ID /// public long ManufacturerID { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Paras { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Flags { get; set; } /// /// /// [SugarColumn(Length = 500, IsNullable = true)] public string TagName { get; set; } /// /// /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public AssetsCompressorSeriesManufacturerMapping Clone() { return (AssetsCompressorSeriesManufacturerMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }