ke
2024-04-22 41c8dd06fe3218e54314a58544d7cefe732fbdfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.gistack.sm.constructionReport.vo;
 
import cn.gistack.sm.constructionReport.entity.ConstructionReport;
import lombok.Data;
 
@Data
public class ConstructionReportVO extends ConstructionReport {
 
    private String adCode;
    private String provinceCode;
    private String provinceName;
    private String cityCode;
    private String cityName;
    private String countyCode;
    private String countyName;
    private String townCode;
    private String townName;
    private String engScal;
    private String resRegCode;
 
    private String reportUserName;
    private String startTime;
    private String endTime;
}