guoshilong
2024-03-14 8fc6411b399d4f418006f063334a4122857e2077
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
package cn.gistack.sm.schedulingModules.vo;
 
import cn.gistack.sm.schedulingModules.entity.SchedulingRecord;
import lombok.Data;
 
@Data
public class SchedulingRecordVO extends SchedulingRecord {
    private String reservoirName;
 
    /**
     * 上报人
     */
    private String reportUser;
 
    /**
     * 行政区划
     */
    private String adCode;
 
    private String cityName;
    private String cityCode;
    private String countyName;
    private String countyCode;
    private String townName;
    private String townCode;
 
    //注册登记码
    private String resRegCode;
    //工程规模
    private String engScal;
 
    private String startTime;
    private String endTime;
}