21 lines
518 B
C#
21 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class DTO_importobject
|
|
{
|
|
public string id { get; set; }
|
|
public string name { get; set; }
|
|
public string sex { get; set; }
|
|
public string identity_card { get; set; }
|
|
public string dept { get; set; }
|
|
public string jobs_state { get; set; }
|
|
public string hazard_names { get; set; }
|
|
public string enterprise { get; set; }
|
|
|
|
}
|
|
}
|