26 lines
765 B
C#
26 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class OccupationDiseaseDataImportModel
|
|
{
|
|
public int id { get; set; }
|
|
public String enterprise { get; set; }
|
|
public String enterprise_id { get; set; }
|
|
public String name { get; set; }
|
|
public String identity_card { get; set; }
|
|
public String start_date { get; set; }
|
|
public String end_date { get; set; }
|
|
public String util { get; set; }
|
|
public String workshop { get; set; }
|
|
public String work_type { get; set; }
|
|
public String factory { get; set; }
|
|
public String protect_method { get; set; }
|
|
public String status { get; set; }
|
|
|
|
}
|
|
}
|