xieb
2024-05-07 5e972eb9928c39b5abbdfd35e2a0aeff40876e7d
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;
}