智慧保安后台管理-外网项目备份
钟日健
2026-06-01 62eb499b0c969f246d3245d1429a97da4de1ce28
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
package org.springblade.modules.registerUnit.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 企业注册实体类
 * @author zhongrj
 * @time 2022-01-11
 */
@Data
@TableName("sys_register_unit")
public class RegisterUnit implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 企业注册主键id
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;
 
 
    /**
     * 企业名称
     */
    private String deptName;
 
    /**
     * 辖区id
     */
    private String jurisdiction;
 
    /**
     * 企业属性
     */
    private String stats;
 
    /**
     * 联系人
     */
    private String linkman;
 
    /**
     * 联系电话
     */
    private String phone;
 
    /**
     * 企业注册地址
     */
    private String address;
 
    /**
     * 登记机关
     */
    private String unit;
 
    /**
     * 注册时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 审核状态
     */
    private String auditStatus;
 
 
    /**
     * 审核时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date auditTime;
 
    /**
     * 审核人员id
     */
    private String auditUser;
 
    /**
     * 公司id
     */
    private String deptId;
 
    /**
     * 营业执照 url
     */
    private String businessLicense;
 
    /**
     * 审核明细
     */
    private String auditDetail;
 
}