futian.liu
2023-12-06 767825c89d220941f730c61065285518408ca965
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.consum.base.pojo.request;
 
import java.util.List;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: TODO
 * @date 2023/12/6 13:37
 */
 
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class FinSysTenantUserParam {
 
    // 主键
    private Long id;
 
    // 属性列表
    private String userName;
 
    private String userCode;
 
    private String tenantId;
 
    private String createBy;
 
    private Long createTime;
 
    private String updateBy;
 
    private Long updateTime;
 
    private Integer sex;
 
    private Integer status;
 
    private Long seq;
 
    private String remark;
 
    private Long sysUserId;
 
    private Long sysDeptId;
 
    private String tenantCode;
 
    private String userPhone;
 
    private Integer isDelete;
 
    private Integer kfStatus;
 
    private String agentJid;
 
    private String workgroupJid;
 
    private String clientNumber;
 
    private String clientPwd;
 
    private Long supplierId;
 
    private String tenantName;
 
    private Integer lv;
 
    @JsonIgnore
    private String roleStr;
 
    private String avatar;
 
    private String email;
 
    @JsonIgnore
    private List<Long> roleList;
 
    private Boolean isOnline;
 
    private String parentCode;
 
    // 是否为运维商 如果有运维商id 则代表是,反之不是
    private String isSupplier;
}