|  |  | 
 |  |  |     @ColumnWidth(30) | 
 |  |  |     private Date findDt; | 
 |  |  |  | 
 |  |  | //    @Schema(title = "在线状态") | 
 |  |  | //    @ExcelProperty("在线状态") | 
 |  |  | //    @ColumnWidth(6) | 
 |  |  | //    private String onlineState; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 在线状态;1-在线,2-离线 | 
 |  |  |      * 是否在线 | 
 |  |  |      */ | 
 |  |  |     @Schema(description = "在线状态", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     @ExcelProperty("在线状态") | 
 |  |  |     @ColumnWidth(1) | 
 |  |  |     @Max(message = "在线状态只能1或2", value = 2) | 
 |  |  |     @Min(message = "在线状态只能1或2",value = 1) | 
 |  |  |     private byte onlineState; | 
 |  |  |     private Boolean isOnLine; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @Schema(title = "通讯协议") | 
 |  |  |     @ExcelProperty("通讯协议") | 
 |  |  |     @ColumnWidth(10) | 
 |  |  |     private String protocol; | 
 |  |  |  | 
 |  |  |     @Schema(title = "备注") | 
 |  |  |     @ExcelProperty("备注") | 
 |  |  |     @ColumnWidth(10) | 
 |  |  |     private String remarks; | 
 |  |  | } |