using Yw.Entity; namespace HStation.Entity { /// /// 冷却塔型号 /// [SysType("assets_cooling_main")] [SugarTable("assets_cooling_main")] public class AssetsCoolingMain : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { /// /// /// public AssetsCoolingMain() { } /// /// /// public AssetsCoolingMain(AssetsCoolingMain rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.Name = rhs.Name; this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.Coefficient = rhs.Coefficient; this.LowerLimit = rhs.LowerLimit; this.KeyWords = rhs.KeyWords; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 系列id /// public long SeriesID { get; set; } /// /// 名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } /// /// 材料 /// [SugarColumn(Length = 100, IsNullable = true)] public string Material { get; set; } /// /// 口径 mm /// public double? Caliber { get; set; } /// /// 喷射系数 /// public double Coefficient { get; set; } /// /// 最小压力 m /// public double LowerLimit { get; set; } /// /// 关键字 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string KeyWords { 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; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public AssetsCoolingMain Clone() { return (AssetsCoolingMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }