using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace dccdc.Models { public class ExaminationProcessModel { /// /// id /// public int id { get; set; } /// /// person_id /// public int person_id { get; set; } /// /// exam_group_maintain_id /// public int exam_group_maintain_id { get; set; } /// /// group_name /// public string group_name { get; set; } /// /// is_entry /// public string is_entry { get; set; } /// /// entry_date /// public string entry_date { get; set; } /// /// is_review /// public string is_review { get; set; } /// /// review_date /// public string review_date { get; set; } /// /// is_complete /// public string is_complete { get; set; } /// /// complete_date /// public string complete_date { get; set; } /// /// collect_doctor /// public string collect_doctor { get; set; } /// /// commit_doctor /// public string commit_doctor { get; set; } /// /// review_need /// public string review_need { get; set; } /// /// physical_num /// public string physical_num { get; set; } /// /// is_treatment /// public string is_treatment { get; set; } /// /// treatment_date /// public string treatment_date { get; set; } /// /// treatment_person /// public string treatment_person { get; set; } //2023-11-06 xulu 医生签名修改为电子图片 public string signation { get; set; } } }