12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*-------------------------------------------------------------------------
- * 功能描述:SystemCheckResultItem
- * 作者:xulisong
- * 创建时间: 2019/2/28 9:52:50
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using SAGA.DotNetUtils.WPF;
- namespace SAGA.GplotRelationComputerManage.SystemChecks
- {
- public class SystemCheckReportItem: BasePropertyChanged
- {
- public SystemCheckReportItem()
- {
- ResultItems = new List<SystemCheckResultItem>();
- }
- private string m_Id;
- /// <summary>
- /// 报表Id
- /// </summary>
- public string Id
- {
- get { return this.m_Id; }
- set
- {
- this.m_Id = value;
- RaisePropertyChanged(nameof(this.Id));
- }
- }
- private string m_FloorId;
- /// <summary>
- /// 楼层Id
- /// </summary>
- public string FloorId
- {
- get { return this.m_FloorId; }
- set
- {
- this.m_FloorId = value;
- RaisePropertyChanged(nameof(this.FloorId));
- }
- }
- private string m_GplotType;
- /// <summary>
- /// 拓扑类型Id
- /// </summary>
- public string GplotType
- {
- get { return this.m_GplotType; }
- set
- {
- this.m_GplotType = value;
- RaisePropertyChanged(nameof(this.GplotType));
- }
- }
- private string m_BuildingTime;
- /// <summary>
- /// 创建时间
- /// </summary>
- public string BuildingTime
- {
- get { return this.m_BuildingTime; }
- set
- {
- this.m_BuildingTime = value;
- RaisePropertyChanged(nameof(this.BuildingTime));
- }
- }
- /// <summary>
- /// 检查相关结果
- /// </summary>
- public List<SystemCheckResultItem> ResultItems { get; set; }
- }
- }
|