| | |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | | this.Reliability = rhs.Reliability; |
| | | this.Safety = rhs.Safety; |
| | | this.Hygiene = rhs.Hygiene; |
| | | this.SaveEnergy = rhs.SaveEnergy; |
| | | this.SystemComposition = rhs.SystemComposition; |
| | | this.TotalPoints = rhs.Reliability + rhs.SaveEnergy + rhs.SystemComposition; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | this.Vmo = rhs; |
| | |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | | this.Reliability = rhs.Reliability; |
| | | this.Safety = rhs.Safety; |
| | | this.Hygiene = rhs.Hygiene; |
| | | this.SaveEnergy = rhs.SaveEnergy; |
| | | this.SystemComposition = rhs.SystemComposition; |
| | | this.TotalPoints = rhs.Reliability + rhs.SaveEnergy + rhs.SystemComposition; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Description = rhs.Description; |
| | | this.Vmo = rhs; |
| | |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 可靠性得分 |
| | | /// 可靠、安全卫生性得分 |
| | | ///</summary> |
| | | [DisplayName("可靠性得分")] |
| | | [DisplayName("可靠、安全卫生性得分")] |
| | | [Browsable(true)] |
| | | public int Reliability { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 安全性得分 |
| | | ///</summary> |
| | | [DisplayName("安全性得分")] |
| | | [Browsable(true)] |
| | | public int Safety { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 卫生得分 |
| | | ///</summary> |
| | | [DisplayName("卫生得分")] |
| | | [Browsable(true)] |
| | | public int Hygiene { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 节能得分 |
| | |
| | | public int SystemComposition { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 总分 |
| | | /// </summary> |
| | | [DisplayName("总分")] |
| | | [Browsable(true)] |
| | | public int TotalPoints { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | | ///</summary> |
| | | [DisplayName("排序码")] |