OauthUserVo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.dragonsoft.dcuc.approvegateway.pojo;
  2. import java.io.Serializable;
  3. /**
  4. * 代码千万行,注释第一行,编码不规范,同事两行泪
  5. *
  6. * @author huang(jy)
  7. * @version 1.0
  8. * @date 2020/12/10 9:22
  9. */
  10. public class OauthUserVo implements Serializable {
  11. private static final long serialVersionUID = -7843750020214903309L;
  12. //id(主键标识:UUID
  13. private String id;
  14. //姓名
  15. private String name;
  16. //省份证号
  17. private String idcard;
  18. //警号
  19. private String policeNumber;
  20. //机构名称
  21. private String orgName;
  22. //机构代码
  23. private String orgCode;
  24. //职务
  25. private String postType;
  26. //人员类型
  27. private String userType;
  28. public OauthUserVo() {
  29. }
  30. public OauthUserVo(String id, String name, String idcard, String policeNumber, String orgName, String orgCode, String postType, String userType) {
  31. this.id = id;
  32. this.name = name;
  33. this.idcard = idcard;
  34. this.policeNumber = policeNumber;
  35. this.orgName = orgName;
  36. this.orgCode = orgCode;
  37. this.postType = postType;
  38. this.userType = userType;
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. public String getName() {
  47. return name;
  48. }
  49. public void setName(String name) {
  50. this.name = name;
  51. }
  52. public String getIdcard() {
  53. return idcard;
  54. }
  55. public void setIdcard(String idcard) {
  56. this.idcard = idcard;
  57. }
  58. public String getPoliceNumber() {
  59. return policeNumber;
  60. }
  61. public void setPoliceNumber(String policeNumber) {
  62. this.policeNumber = policeNumber;
  63. }
  64. public String getOrgName() {
  65. return orgName;
  66. }
  67. public void setOrgName(String orgName) {
  68. this.orgName = orgName;
  69. }
  70. public String getOrgCode() {
  71. return orgCode;
  72. }
  73. public void setOrgCode(String orgCode) {
  74. this.orgCode = orgCode;
  75. }
  76. public String getPostType() {
  77. return postType;
  78. }
  79. public void setPostType(String postType) {
  80. this.postType = postType;
  81. }
  82. public String getUserType() {
  83. return userType;
  84. }
  85. public void setUserType(String userType) {
  86. this.userType = userType;
  87. }
  88. }