25 lines
834 B
C#
25 lines
834 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace _1200gFtp
|
|||
|
{
|
|||
|
public class FLYecgReport
|
|||
|
{
|
|||
|
public string appointmentId { get; set; }
|
|||
|
public string reportTime { get; set;}
|
|||
|
public string reportDoctor { get; set; }
|
|||
|
public string reportDoctorCode { get; set; }
|
|||
|
public string reportDepartmentCode { get; set; }
|
|||
|
public string reportDepartmentName { get; set; }
|
|||
|
public string reportHospitalCode { get; set; }
|
|||
|
public string reportHospitalName { get; set; }
|
|||
|
public string dcmFileUrl { get; set; }
|
|||
|
public string isAbnormal { get; set; }//是否正常 是否异常0阳性1阴性
|
|||
|
public string remark { get; set; }//结论
|
|||
|
public int status { get; set; }
|
|||
|
}
|
|||
|
}
|