41 lines
878 B
C#
41 lines
878 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|
|
}
|