|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @Schema(title = "控制器视图对象") | 
|---|
|  |  |  | public class VoController implements BaseEntity { | 
|---|
|  |  |  | private static final long serialVersionUID = 1L; | 
|---|
|  |  |  | private static final long serialVersionUID = 202401241704003L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "ID") | 
|---|
|  |  |  | @ExcelProperty("ID") | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelProperty("控制器地址") | 
|---|
|  |  |  | @ColumnWidth(15) | 
|---|
|  |  |  | private String rtuAddr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "在线状态") | 
|---|
|  |  |  | @ExcelProperty("在线状态") | 
|---|
|  |  |  | @ColumnWidth(15) | 
|---|
|  |  |  | private String onlineState; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "绑定取水口") | 
|---|
|  |  |  | @ExcelProperty("绑定取水口") | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | @Schema(title = "最近上报时间") | 
|---|
|  |  |  | @ExcelProperty("最近上报时间") | 
|---|
|  |  |  | @Schema(title = "发现日期时间") | 
|---|
|  |  |  | @ExcelProperty("发现日期时间") | 
|---|
|  |  |  | @ColumnWidth(30) | 
|---|
|  |  |  | private Date reportTime; | 
|---|
|  |  |  | private Date findDt; | 
|---|
|  |  |  | } | 
|---|