67 lines
2.4 KiB
C#
67 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class OccupationDataImportObjectModel
|
|
{
|
|
public int id { get; set; }
|
|
public string enterprise { get; set; }
|
|
public int enterprise_id { get; set; }
|
|
public string name { get; set; }
|
|
public string sex { get; set; }
|
|
public string born_date { get; set; }
|
|
public string identity_card { get; set; }
|
|
public string is_merry { get; set; }
|
|
public string telephone { get; set; }
|
|
public string dept { get; set; }
|
|
public string work_num { get; set; }
|
|
public string work_type { get; set; }
|
|
public string nation { get; set; }
|
|
public string nationality { get; set; }
|
|
public string factor { get; set; }
|
|
public string work_age_year { get; set; }
|
|
public string work_age_month { get; set; }
|
|
public string factor_age_year { get; set; }
|
|
public string factor_age_month { get; set; }
|
|
public string comment { get; set; }
|
|
public string person_type { get; set; }
|
|
public string check_type { get; set; }
|
|
public string radiological_code { get; set; }
|
|
public string check_unit { get; set; }
|
|
public string train_unit { get; set; }
|
|
public string social_card { get; set; }
|
|
public string check_no { get; set; }
|
|
public string personal_no { get; set; }
|
|
public string start_end_date { get; set; }
|
|
public string process { get; set; }
|
|
public string import_date { get; set; }
|
|
public string scheme_name { get; set; }
|
|
public string work_state { get; set; }
|
|
public string data_import_cache_id { get; set; }
|
|
public string physical_way { get; set; }
|
|
public string hazard_names { get; set; }
|
|
public string hazard_alias { get; set; }
|
|
public string hazard_ids { get; set; }
|
|
public string hazards_type { get; set; }
|
|
|
|
public string hazards_type_codes { get; set; }
|
|
|
|
public string check_item_ids { get; set; }
|
|
|
|
public string exam_type { get; set; }
|
|
|
|
public string exam_type_maintain_id { get; set; }
|
|
|
|
public string util_scheme_id { get; set; }
|
|
|
|
public string common_scheme_id { get; set; }
|
|
|
|
public string charge { get; set; }
|
|
public string job_num { get; set; }
|
|
public string phone { get; set; }
|
|
}
|
|
}
|