55 lines
2.2 KiB
C#
55 lines
2.2 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class occupation_reportModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string physical_num { get; set; }
|
|||
|
|
public string report_num { get; set; }
|
|||
|
|
public string check_start_time { get; set; }
|
|||
|
|
public string check_end_time { get; set; }
|
|||
|
|
[Required(ErrorMessage = "公司名称不能为空")]
|
|||
|
|
public string subject_company { get; set; }
|
|||
|
|
public string entrust_company { get; set; }
|
|||
|
|
public string count_unit { get; set; }
|
|||
|
|
public string evaluation_basic { get; set; }
|
|||
|
|
public string diagnostic_standard { get; set; }
|
|||
|
|
public string status { get; set; }
|
|||
|
|
public string descript { get; set; }
|
|||
|
|
public string expersion_disease { get; set; }
|
|||
|
|
public string other_disease { get; set; }
|
|||
|
|
public string result_description { get; set; }
|
|||
|
|
public string per_factory_analysis { get; set; }
|
|||
|
|
public string treatment_opinion { get; set; }
|
|||
|
|
public string person_ids { get; set; }
|
|||
|
|
public string report_user_name { get; set; }
|
|||
|
|
public string report_person { get; set; }
|
|||
|
|
public string report_date { get; set; }
|
|||
|
|
public string report_status { get; set; }
|
|||
|
|
public string approve_user_name { get; set; }
|
|||
|
|
public string approve_person { get; set; }
|
|||
|
|
public string approve_date { get; set; }
|
|||
|
|
public string approve_back_desc { get; set; }
|
|||
|
|
public string issue_user_name { get; set; }
|
|||
|
|
public string issue_person { get; set; }
|
|||
|
|
public string issue_date { get; set; }
|
|||
|
|
public string issue_back_desc { get; set; }
|
|||
|
|
public string print_date { get; set; }
|
|||
|
|
public string print_person { get; set; }
|
|||
|
|
public string report_edit_type { get; set; }
|
|||
|
|
public string report_url { get; set; }
|
|||
|
|
|
|||
|
|
//2023-10-31 xulu 新增有害因素、体检项目、目标疾病字段
|
|||
|
|
public string hazards_text { get; set; }
|
|||
|
|
//体检项目
|
|||
|
|
public string check_items { get; set; }
|
|||
|
|
//目标疾病
|
|||
|
|
public string target_disease { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|