chen_xi
2023-06-29 ee138e53a109cfc28aa8565575a944086711094c
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package com.moral.api.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
 
import java.time.LocalDateTime;
import java.io.Serializable;
import java.util.Date;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 企业整顿清单
 * </p>
 *
 * @author moral
 * @since 2022-04-13
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Rectify extends Model<Rectify> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 地区编码
     */
    private Integer cityCode;
 
    /**
     * 地区名称
     */
    private String cityName;
 
    /**
     * 县市区名称
     */
    private String areaName;
 
    /**
     * 乡镇名称
     */
    private String townName;
 
    /**
     * 组织机构代码
     */
    private String institutionCode;
 
    /**
     * 企业名称
     */
    private String enterpriseName;
 
    /**
     * 企业地址
     */
    private String enterpriseAddress;
 
    /**
     * 经度
     */
    private Double longitude;
 
    /**
     * 纬度
     */
    private Double latitude;
 
    /**
     * 企业规模
     */
    private String enterpriseScale;
 
    /**
     * 主要原料,多个逗号隔开
     */
    private String material;
 
    /**
     * 主要燃料,多个逗号隔开
     */
    private String fuel;
 
    /**
     * 主要产品,多个逗号隔开
     */
    private String product;
 
    /**
     * 完成时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date completeTime;
 
    /**
     * 责任单位
     */
    private String responsibleUnit;
 
    /**
     * 责任人
     */
    private String responsiblePerson;
 
    /**
     * 是否完成
     */
    private String isComplete;
 
    /**
     * 整顿类别
     */
    private String rectifyCategory;
 
    /**
     * 备注
     */
    private String remarks;
 
    /**
     * 创建时间
     */
    @JsonIgnore
    private Date createTime;
 
    /**
     * 更新时间
     */
    @JsonIgnore
    private Date updateTime;
 
    /**
     * 是否删除,0:不删除,1:删除
     */
    @JsonIgnore
    private String isDelete;
 
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
}