chenjiahe
2021-10-28 eb56b31099062a548d6369248e67921d5afe6236
提交 | 用户 | age
6c1bfc 1 package com.platform.util.corp.entity;
C 2
3
4 /**扫码登录授权的用户信息
5  * @author CJH
6  * @date 2021-10-21
7  */
8 public class PersonnelQr {
9     /**返回码。若返回该字段,并且errcode!=0,为调用失败;*/
10     private String errcode;
11     /**对返回码的文本描述内容。仅当errcode字段返回时,同时返回errmsg*/
12     private String errmsg;
13     /**登录用户的类型:1.创建者 2.内部系统管理员 3.外部系统管理员 4.分级管理员 5.成员*/
14     private String usertype;
15     /**登录用户的信息*/
16     private PersonnelQrInfo personnelQrInfo;
17
18
19     public String getErrcode() {
20         return errcode;
21     }
22
23     public void setErrcode(String errcode) {
24         this.errcode = errcode;
25     }
26
27     public String getErrmsg() {
28         return errmsg;
29     }
30
31     public void setErrmsg(String errmsg) {
32         this.errmsg = errmsg;
33     }
34
35     public String getUsertype() {
36         return usertype;
37     }
38
39     public void setUsertype(String usertype) {
40         this.usertype = usertype;
41     }
42
43     public PersonnelQrInfo getPersonnelQrInfo() {
44         return personnelQrInfo;
45     }
46
47     public void setPersonnelQrInfo(PersonnelQrInfo personnelQrInfo) {
48         this.personnelQrInfo = personnelQrInfo;
49     }
eb56b3 50
C 51     @Override
52     public String toString() {
53         return "PersonnelQr{" +
54                 "errcode='" + errcode + '\'' +
55                 ", errmsg='" + errmsg + '\'' +
56                 ", usertype='" + usertype + '\'' +
57                 ", personnelQrInfo=" + personnelQrInfo +
58                 '}';
59     }
6c1bfc 60 }