StableVersion4.3/HL_FristAidPlatform_Help/Model/ApoplexyUploadInfoInfoModel.cs

40 lines
913 B
C#

using System;
using System.Collections.Generic;
//using System.Linq;
//using System.Text;
//using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 上报错误信息
/// </summary>
public class ApoplexyUploadInfoInfoModel
{
public string PatientGUID { get; set; }
public string PatientName { get; set; }
public int ReportingStatus { get; set; }
public string Msg { get; set; }
public DateTime? ReportingDateTime { get; set; }
public string Flag { get; set; }
public List<ApoplexyUploadMsgInfoModel> FieldList;
/// <summary>
/// 上报错误信息
/// </summary>
public class ApoplexyUploadMsgInfoModel {
public string TabelName { get; set; }
public string Name { get; set; }
public string Code { get; set; }
}
}
}