guoshilong
2024-03-31 a4cd27af8c445e2b043aa146ee38f04222c992e7
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
package cn.gistack.sm.sjztdw.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@TableName("\"dws_water_res_z_eight_detail_all\"")
public class DwsWaterResZEightDetailAll {
 
    @TableField(value = "\"dt\"")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date dt;
 
    @TableField(value = "\"tm\"")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date tm;
 
    @TableField(value = "\"st_cd\"")
    //雨情测站编码
    private String stCd;
 
 
    @TableField(value = "\"st_nm\"")
    //雨情测站编码
    private String stNm;
 
    @TableField(value = "\"res_cd\"")
    //雨情测站编码
    private String resCd;
 
    @TableField(value = "\"res_nm\"")
    //雨情测站编码
    private String resNm;
 
    @TableField(value = "\"eng_scal\"")
    private String engScal;
 
    @TableField(value = "\"res_lon\"")
    private String resLon;
 
    @TableField(value = "\"res_lat\"")
    private String resLat;
 
 
    @TableField(value = "\"province_cd\"")
    //雨情测站编码
    private String provinceCd;
 
 
    @TableField(value = "\"province_nm\"")
    //雨情测站编码
    private String provinceNm;
 
 
    @TableField(value = "\"city_cd\"")
    //雨情测站编码
    private String cityCd;
 
 
    @TableField(value = "\"city_nm\"")
    //雨情测站编码
    private String cityNm;
 
 
    @TableField(value = "\"county_cd\"")
    //雨情测站编码
    private String countyCd;
 
 
    @TableField(value = "\"county_nm\"")
    //雨情测站编码
    private String countyNm;
 
 
    @TableField(value = "\"town_cd\"")
    //雨情测站编码
    private String townCd;
 
 
    @TableField(value = "\"town_nm\"")
    //雨情测站编码
    private String townNm;
 
 
    @TableField(value = "\"village_cd\"")
    //雨情测站编码
    private String villageCd;
 
    @TableField(value = "\"village_nm\"")
    //雨情测站编码
    private String villageNm;
 
    @TableField(value = "\"rz\"")
    //监测水位
    private String rz;
 
    @TableField(value = "\"par_dt\"")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    //分区日期
    private Date parDt;
 
    @TableField(value = "\"resource_flag\"")
    //来源
    private String resourceFlag;
 
 
    @TableField(value = "\"collect_dt\"")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    //采集时间
    private Date collectDt;
 
    @TableField(value = "\"low_z\"")
    //下游水位
    private String lowZ;
 
    @TableField(value = "\"is_tb\"")
    //是否人工
    private String isTb;
 
 
 
 
}