using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace dccdc.Models { /// /// 用于体检方案维护中 体检项目列表展现数据 /// public class DTO_TjfnTjxmModel { public string is_check { get; set; } public int id { get; set; } public string project_name { get; set; } public string exam_group { get; set; } public int project_id { get; set; } public string project_alias { get; set; } public string project_type { get; set; } public string standard_value { get; set; } public string unit { get; set; } public int exam_group_maintain_id { get; set; } public string model { get; set; } public int judgment_mode_maintain_id { get; set; } public int exam_prepose_condition_maintain_id { get; set; } } }