zhongrj
2023-08-15 a65ae7bcc2a3ae10bf31a89fc0d2e7dfd0038a41
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package cn.gistack.sm.sjztmd.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 中台水库效益实体类-填报
 *
 * @author zhongrj
 * @date 2023-08-15
 */
@Data
@TableName("\"tb_att_res_eng_bene\"")
@ApiModel(value = "水库效益对象", description = "水库效益对象")
public class TbAttResEngBene implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @JsonSerialize(using = ToStringSerializer.class)
    @ApiModelProperty(value = "主键")
    @TableField("\"guid\"")
    private String guid;
 
    /**
     * 水库编码
     */
    @ApiModelProperty(value = "水库编码")
    @TableField("\"res_guid\"")
    private String resGuid;
 
    /**
     * 防洪保护对象
     */
    @ApiModelProperty(value = "防洪保护对象")
    @TableField("\"fl_control_project\"")
    private Integer flControlProject;
 
    /**
     * 城市
     */
    @ApiModelProperty(value = "城市")
    @TableField("\"city\"")
    private String city;
 
    /**
     * 集镇
     */
    @ApiModelProperty(value = "集镇")
    @TableField("\"town\"")
    private String town;
 
    /**
     * 铁站
     */
    @ApiModelProperty(value = "铁站")
    @TableField("\"railway\"")
    private String railway;
 
    /**
     * 公路
     */
    @ApiModelProperty(value = "公路")
    @TableField("\"highway\"")
    private String highway;
 
    /**
     * 重要管线通信设施
     */
    @ApiModelProperty(value = "重要管线通信设施 ")
    @TableField("\"import_communication\"")
    private String importCommunication;
 
    /**
     * 重要厂矿企业
     */
    @ApiModelProperty(value = "重要厂矿企业 ")
    @TableField("\"import_factory\"")
    private String importFactory;
 
    /**
     * 其他重要设施
     */
    @ApiModelProperty(value = "其他重要设施 ")
    @TableField("\"import_other_fac\"")
    private String importOtherFac;
 
    /**
     * 防洪保护人口
     */
    @ApiModelProperty(value = "防洪保护人口 ")
    @TableField("\"fl_control_person\"")
    private Integer flControlPerson;
 
    /**
     * 防洪保护耕地
     */
    @ApiModelProperty(value = "防洪保护耕地 ")
    @TableField("\"fl_control_land\"")
    private Double flControlLand;
 
    /**
     * 多年平均灌溉水量
     */
    @ApiModelProperty(value = "多年平均灌溉水量 ")
    @TableField("\"moyear_irr_avg\"")
    private Double moyearIrrAvg;
 
    /**
     * 灌溉对象
     */
    @ApiModelProperty(value = "灌溉对象 ")
    @TableField("\"irr_object\"")
    private String irrObject;
 
    /**
     * 供水对象
     */
    @ApiModelProperty(value = "供水对象 ")
    @TableField("\"supply_object\"")
    private String supplyObject;
 
    /**
     * 多年平均供水量
     */
    @ApiModelProperty(value = "多年平均供水量 ")
    @TableField("\"moyear_supply_avg\"")
    private Double moyearSupplyAvg;
 
    /**
     * 多年平均年发电量
     */
    @ApiModelProperty(value = "多年平均年发电量 ")
    @TableField("\"moyear_power_avg\"")
    private Double moyearPowerAvg;
 
    /**
     * 生态流量
     */
    @ApiModelProperty(value = "生态流量 ")
    @TableField("\"ecological_flow\"")
    private Double ecologicalFlow;
 
    /**
     * 填报状态(0:填写中,1:审核中,2:审核通过)
     */
    @ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ")
    @TableField("\"check_state\"")
    @JsonSerialize(using = ToStringSerializer.class)
    private Integer checkState;
 
    /**
     * 审核记录
     */
    @ApiModelProperty(value = "审核记录 ")
    @TableField("\"check_log\"")
    private String checkLog;
 
    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间 ")
    @TableField("\"create_time\"")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 操作记录
     */
    @ApiModelProperty(value = "操作记录 ")
    @TableField("\"log\"")
    private String log;
 
}