干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-16 c2fccb01b972176dc3da5a497b5e904025e9e98d
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package org.jeecg.modules.system.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 租户信息
 * @author: jeecg-boot
 */
@Data
@TableName("sys_tenant")
public class SysTenant implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 编码
     */
    private Integer id;
    
    /**
     * 名称
     */
    private String name;
    
 
    /**
     * 创建人
     */
    private String createBy;
 
    /**
     * 创建时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 开始时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date beginDate;
 
    /**
     * 结束时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date endDate;
 
    /**
     * 状态 1正常 0冻结
     */
    @Dict(dicCode = "tenant_status")
    private Integer status;
 
    /**
     * 所属行业
     */
    @Dict(dicCode = "trade")
    private String trade;
 
    /**
     * 公司规模
     */
    @Dict(dicCode = "company_size")
    private String companySize;
 
    /**
     * 公司地址
     */
    private String companyAddress;
 
    /**
     * 公司logo
     */
    private String companyLogo;
 
    /**
     * 门牌号
     */
    private String houseNumber;
 
    /**
     * 工作地点
     */
    private String workPlace;
 
    /**
     * 二级域名(暂时无用,预留字段)
     */
    private String secondaryDomain;
 
    /**
     * 登录背景图片(暂时无用,预留字段)
     */
    private String loginBkgdImg;
 
    /**
     * 职级
     */
    @Dict(dicCode = "company_rank")
    private String position;
 
    /**
     * 部门
     */
    @Dict(dicCode = "company_department")
    private String department;
    
    @TableLogic
    private Integer delFlag;
 
    /**更新人登录名称*/
    private String updateBy;
    
    /**更新日期*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    /**
     * 允许申请管理员 1允许 0不允许
     */
    private Integer applyStatus;
    
}