New file |
| | |
| | | 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; |
| | | } |