UserInfoSelect.java 436 B

1234567891011121314151617181920212223
  1. package thyyxxk.webserver.entity.login;
  2. import lombok.Data;
  3. @Data
  4. public class UserInfoSelect {
  5. private String code;
  6. private String codeRs;
  7. private String name;
  8. private String pyCode;
  9. private String dCode;
  10. private String deptCode;
  11. private String deptCodeName;
  12. private String title;
  13. public String getLabel() {
  14. return name;
  15. }
  16. public String getValue() {
  17. return code;
  18. }
  19. }