gonglilong
2024-09-14 7f615dc1f37ccc9efd7f5b2f7e044c2e62f01074
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.gistack.sm.jcsb.vo;
 
import cn.gistack.sm.jcsb.entity.DbReport;
import lombok.Data;
 
@Data
public class DbReportVO extends DbReport {
 
    private String startTime;
 
    private String endTime;
 
    //测站名称
    private String stationName;
 
    private String  timeFlag;
 
    //断面
    private String ch;
 
    private String reportTime;
}