namespace HStation.WinFrmUI
{
public class AdaptingViewModel
{
public AdaptingViewModel(AdaptingViewModel rhs)
{
this.ID = rhs.ID;
this.DbLocked = rhs.DbLocked;
this.MatchingType = rhs.MatchingType;
this.Material = rhs.Material;
this.Caliber = rhs.Caliber;
this.Code = rhs.Code;
this.Dbid = rhs.Dbid;
this.ModelType = rhs.ModelType;
}
///
/// ID
///
[DisplayName("ID")]
[Browsable(false)]
public long ID { get; set; }
///
/// 名称
///
[DisplayName("名称")]
[Browsable(true)]
public string Name { get; set; }
///
///
///
[DisplayName("Dbid")]
[Browsable(false)]
public long Dbid { get; set; }
///
/// 编码
///
[DisplayName("编码")]
[Browsable(true)]
public string Code { get; set; }
///
/// 型号名
///
[DisplayName("型号名")]
[Browsable(true)]
public string ModelType { get; set; }
///
/// 材质
///
[DisplayName("材质")]
[Browsable(true)]
public string Material { get; set; }
///
/// 口径
///
[DisplayName("口径")]
[Browsable(true)]
public string Caliber { get; set; }
///
/// Db锁定
///
[DisplayName("是否锁定")]
[Browsable(true)]
public bool DbLocked { get; set; }
///
/// 损失系数
///
[DisplayName("损失系数")]
[Browsable(true)]
public string LossCoefficient { get; set; }
///
/// 是否匹配成功
///
[DisplayName("是否匹配成功")]
[Browsable(true)]
public int MatchingType { get; set; }
}
}