UserInfoBean.java 884 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.shkpr.service.alambizplugin.dto;
  2. import com.global.base.tools.FastJsonUtil;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. @Getter
  6. @Setter
  7. public class UserInfoBean {
  8. private String userid = "";
  9. private String roleid = "";
  10. private String roleName = "";
  11. private String account = "";
  12. private String realName = "";
  13. private String email = "";
  14. private String address = "";
  15. private String avatar = "";
  16. private int sex = 0;
  17. private String phone = "";
  18. //private String deptId = "";
  19. //private String postId = "";
  20. private String org = "";
  21. private String orgName = "";
  22. private String repairTeamId = "";
  23. private String repairTeam = "";
  24. private String repairTeamOrg = "";
  25. private long createTime = 0L;
  26. public UserInfoBean() {}
  27. public String toJsonStr(){
  28. return FastJsonUtil.toJSON(this);
  29. }
  30. }