guoshilong
2024-04-19 245cf74956c41810de3e59e48a41e458f4f96693
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;
}