| | |
| | | namespace HStation.Model |
| | | { |
| | | /// <summary> |
| | | /// 业务站 |
| | | /// 三通型号 |
| | | /// </summary> |
| | | [SysType("assets_threelink_main")] |
| | | public class AssetsThreelinkMain : BaseModel, ISorter, System.ICloneable |
| | | public class AssetsThreelinkMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | |
| | | this.Name = rhs.Name; |
| | | this.Material = rhs.Material; |
| | | this.Caliber = rhs.Caliber; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.RunThroughMinorLoss = rhs.RunThroughMinorLoss; |
| | | this.BranchThroughMinorLoss = rhs.BranchThroughMinorLoss; |
| | | this.KeyWord = rhs.KeyWord; |
| | | this.KeyWords = rhs.KeyWords; |
| | | this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); |
| | | this.Flags = rhs.Flags?.ToList(); |
| | | this.TagName = rhs.TagName; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | } |
| | |
| | | this.Name = rhs.Name; |
| | | this.Material = rhs.Material; |
| | | this.Caliber = rhs.Caliber; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.RunThroughMinorLoss = rhs.RunThroughMinorLoss; |
| | | this.BranchThroughMinorLoss = rhs.BranchThroughMinorLoss; |
| | | this.KeyWord = rhs.KeyWord; |
| | | this.KeyWords = rhs.KeyWords; |
| | | this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); |
| | | this.Flags = rhs.Flags?.ToList(); |
| | | this.TagName = rhs.TagName; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | } |
| | |
| | | public string Material { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 系数 |
| | | /// </summary> |
| | | public double MinorLoss { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 运行通过损失系数 |
| | | /// 主管通过损失系数 |
| | | /// </summary> |
| | | public double? RunThroughMinorLoss { get; set; } |
| | | |
| | |
| | | /// <summary> |
| | | /// 识别关键字 |
| | | /// </summary> |
| | | public List<string> KeyWord { get; set; } |
| | | public List<string> KeyWords { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数 |
| | | /// </summary> |
| | | public Dictionary<string, string> Paras { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 标签 |
| | | /// </summary> |
| | | public List<string> Flags { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 标志 |
| | | /// </summary> |
| | | public string TagName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AssetsPumpGroupAndMainMap Clone() |
| | | public AssetsPumpGroupAndMainMapping Clone() |
| | | { |
| | | return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); |
| | | return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |