| | |
| | | /// </summary> |
| | | public class ThreelinkMatchingViewModel |
| | | { |
| | | |
| | | /// <summary> |
| | | /// ID |
| | | /// </summary> |
| | |
| | | [Browsable(true)] |
| | | public double? MinorLoss { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 匹配型号 |
| | | /// </summary> |
| | |
| | | [DisplayName("MatchingDbId")] |
| | | [Browsable(false)] |
| | | public string MatchingDbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 运行通过损失系数 |
| | | /// </summary> |
| | | [DisplayName("运行通过损失系数")] |
| | | [Browsable(true)] |
| | | public double? RunThroughCoefficient { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 支管通过损失系数 |
| | | /// </summary> |
| | | [DisplayName("支管通过损失系数")] |
| | | [Browsable(true)] |
| | | public double? BranchThroughCoefficient { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配材质 |
| | |
| | | [DisplayName("匹配损失系数")] |
| | | [Browsable(true)] |
| | | public double? MatchingMinorLoss { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 运行通过损失系数 |
| | | /// </summary> |
| | | [DisplayName("匹配运行通过损失系数")] |
| | | [Browsable(true)] |
| | | public double? MatchingRunThroughCoefficient { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 支管通过损失系数 |
| | | /// </summary> |
| | | [DisplayName("匹配支管通过损失系数")] |
| | | [Browsable(true)] |
| | | public double? MatchingBranchThroughCoefficient { get; set; } |
| | | } |
| | | } |