tijian_tieying/web/dccdc.Models/OccupationDiseaseDataImportModel.cs

26 lines
765 B
C#
Raw Permalink Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}