Administrator
2024-08-05 e84b3255aa6888aca2695e1b8e5ccc6236d60919
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
35
36
37
38
39
40
package com.dy.pipIrrGlobal.voPr;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-04 17:14
 * @LastEditTime 2024-01-04 17:14
 * @Description
 */
 
@Data
@Schema(title = "管网流量监测站视图对象")
public class VoFlowMonitoring implements BaseEntity {
    private static final long serialVersionUID = 202401241704006L;
 
    @Schema(title = "ID")
    @ExcelProperty("ID")
    @ColumnWidth(10)
    private String id;
 
    @Schema(title = "管网流量监测站名称")
    @ExcelProperty("管网流量监测站名称")
    @ColumnWidth(15)
    private String name;
 
    @Schema(title = "绑定状态")
    @ExcelProperty("绑定状态")
    @ColumnWidth(15)
    private String bindState;
 
    @Schema(title = "地址")
    @ExcelProperty("地址")
    @ColumnWidth(20)
    private String address;
}