123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.dragonsoft.dcuc.approvegateway.pojo;
- import java.io.Serializable;
- /**
- * 代码千万行,注释第一行,编码不规范,同事两行泪
- *
- * @author huang(jy)
- * @version 1.0
- * @date 2020/12/10 9:22
- */
- public class OauthUserVo implements Serializable {
- private static final long serialVersionUID = -7843750020214903309L;
- //id(主键标识:UUID
- private String id;
- //姓名
- private String name;
- //省份证号
- private String idcard;
- //警号
- private String policeNumber;
- //机构名称
- private String orgName;
- //机构代码
- private String orgCode;
- //职务
- private String postType;
- //人员类型
- private String userType;
- public OauthUserVo() {
- }
- public OauthUserVo(String id, String name, String idcard, String policeNumber, String orgName, String orgCode, String postType, String userType) {
- this.id = id;
- this.name = name;
- this.idcard = idcard;
- this.policeNumber = policeNumber;
- this.orgName = orgName;
- this.orgCode = orgCode;
- this.postType = postType;
- this.userType = userType;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getIdcard() {
- return idcard;
- }
- public void setIdcard(String idcard) {
- this.idcard = idcard;
- }
- public String getPoliceNumber() {
- return policeNumber;
- }
- public void setPoliceNumber(String policeNumber) {
- this.policeNumber = policeNumber;
- }
- public String getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public String getOrgCode() {
- return orgCode;
- }
- public void setOrgCode(String orgCode) {
- this.orgCode = orgCode;
- }
- public String getPostType() {
- return postType;
- }
- public void setPostType(String postType) {
- this.postType = postType;
- }
- public String getUserType() {
- return userType;
- }
- public void setUserType(String userType) {
- this.userType = userType;
- }
- }
|