EmployeeDTO.java 831 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.uas.eis.sdk.dto;
  2. import lombok.Data;
  3. import lombok.NoArgsConstructor;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * dto说明
  8. * */
  9. @Data
  10. @NoArgsConstructor
  11. public class EmployeeDTO {
  12. /**
  13. *主键ID
  14. * */
  15. private String em_code;
  16. private String em_name;
  17. private String em_sex;
  18. private String em_depart;
  19. private String em_defaultorname;
  20. private String em_position;
  21. private String em_cscode;
  22. private String em_cop;
  23. private String em_class;
  24. private String em_status;
  25. private String em_type;
  26. private String em_mobile;
  27. private BigDecimal em_id;
  28. private Date em_indate;
  29. private String em_recorder;
  30. private String em_departmentcode;
  31. private String em_defaultorcode;
  32. private String em_qywx;
  33. private String em_password;
  34. }