namespace HStation.WinFrmUI { /// /// 方案视图 /// public class SimulationPrintSchemeViewModel { /// /// /// public SimulationPrintSchemeViewModel() { } /// /// /// public SimulationPrintSchemeViewModel(HStation.Vmo.XhsSchemeVmo rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.NO = rhs.NO; this.ChangeTypes = rhs.ChangeTypes; this.Description = rhs.Description; this.WorkingList = new List(); } /// /// ID /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string NO { get; set; } /// /// 改变类型 /// public List ChangeTypes { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 工况列表 /// public List WorkingList { get; set; } } }