mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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 com.panzhihua.service_dangjian.entity;
 
import java.util.Date;
import java.io.Serializable;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 党建-报到单位(ComPbCheckUnit)实体类
 *
 * @author lyq
 * @since 2022-02-16 16:22:18
 */
@Data
public class ComPbCheckUnit implements Serializable {
    private static final long serialVersionUID = 877551680973276301L;
    /**
     * 主键id
     */
    @TableId(type = IdType.ASSIGN_ID)
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
    /**
     * 社区id
     */
    private Long communityId;
    /**
     * 单位名称
     */
    private String name;
    /**
     * 单位类别(1.国有企业 2.国有控股企业 3.外资企业 4.合资企业 5.私营企业 6.事业单位 7.国家行政机关 8.政府)
     */
    private Integer type;
    /**
     * 负责人
     */
    private String contacts;
    /**
     * 负责人联系电话
     */
    private String phone;
    /**
     * 创建时间
     */
    private Date createAt;
    /**
     * 创建人id
     */
    private Long createBy;
    /**
     * 修改时间
     */
    private Date updateAt;
    /**
     * 修改人id
     */
    private Long updateBy;
 
    /**
     * 党组织名称
     */
    private String orgName;
 
    /**
     * 党组织logo
     */
    private String logo;
 
    private Integer partyNum;
 
    private String specialtyName;
 
    private Long helpCommunityId;
 
    private String helpCommunityName;
 
    private String helpCommunityContacts;
 
    private String helpCommunityContactsName;
 
    private Long villageId;
 
    private String villageName;
 
    private String natureName;
 
    private Integer natureId;
 
    private String address;
 
    private String adminName;
 
    private String adminPhone;
 
    private String otherRemark;
 
    private String belongTo;
 
    private String adminJson;
}