| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.uas.eis.sdk.dto;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * dto说明
- * */
- @Data
- @NoArgsConstructor
- public class EmployeeDTO {
- /**
- *主键ID
- * */
- private String em_code;
- private String em_name;
- private String em_sex;
- private String em_depart;
- private String em_defaultorname;
- private String em_position;
- private String em_cscode;
- private String em_cop;
- private String em_class;
- private String em_status;
- private String em_type;
- private String em_mobile;
- private BigDecimal em_id;
- private Date em_indate;
- private String em_recorder;
- private String em_departmentcode;
- private String em_defaultorcode;
- private String em_qywx;
- private String em_password;
- }
|