namespace HStation.WinFrmUI
{
///
/// 三通匹配ViewModel
///
public class ThreelinkMatchingViewModel
{
///
/// UserID
///
[DisplayName("ID")]
[Browsable(false)]
public long ID { get; set; }
///
/// 编码
///
[DisplayName("编码")]
[Browsable(true)]
public string Code { get; set; }
///
/// 名称
///
[DisplayName("名称")]
[Browsable(true)]
public string Name { get; set; }
///
/// Db锁定
///
[DisplayName("锁定")]
[Browsable(true)]
public bool DbLocked { get; set; }
///
/// 型号
///
[DisplayName("型号")]
[Browsable(true)]
public string ModelType { get; set; }
///
/// DbId
///
[DisplayName("DbId")]
[Browsable(false)]
public string DbId { get; set; }
///
/// 材质
///
[DisplayName("材质")]
[Browsable(true)]
public string Material { get; set; }
///
/// 口径
///
[DisplayName("口径")]
[Browsable(true)]
public double? Caliber { get; set; }
///
/// 损失系数
///
[DisplayName("损失系数")]
[Browsable(true)]
public double? MinorLoss { get; set; }
///
/// 匹配型号
///
[DisplayName("匹配型号")]
[Browsable(true)]
public string MatchingModelType { get; set; }
///
/// 匹配Dbid
///
[DisplayName("MatchingDbId")]
[Browsable(false)]
public string MatchingDbId { get; set; }
///
/// 运行通过损失系数
///
[DisplayName("运行通过损失系数")]
[Browsable(true)]
public double? RunThroughCoefficient { get; set; }
///
/// 支管通过损失系数
///
[DisplayName("支管通过损失系数")]
[Browsable(true)]
public double? BranchThroughCoefficient { get; set; }
///
/// 匹配材质
///
[DisplayName("匹配材质")]
[Browsable(true)]
public string MatchingMaterial { get; set; }
///
/// 匹配口径
///
[DisplayName("匹配口径")]
[Browsable(true)]
public double? MatchingCaliber { get; set; }
///
/// 匹配损失系数
///
[DisplayName("匹配损失系数")]
[Browsable(true)]
public double? MatchingMinorLoss { get; set; }
///
/// 运行通过损失系数
///
[DisplayName("匹配运行通过损失系数")]
[Browsable(true)]
public double? MatchingRunThroughCoefficient { get; set; }
///
/// 支管通过损失系数
///
[DisplayName("匹配支管通过损失系数")]
[Browsable(true)]
public double? MatchingBranchThroughCoefficient { get; set; }
}
}