| | |
| | | public class VoIntake implements BaseEntity { |
| | | private static final long serialVersionUID = 202312261049001L; |
| | | |
| | | @Schema(title = "ID") |
| | | @ExcelProperty("ID") |
| | | @Schema(title = "取水口ID") |
| | | @ExcelProperty("取水口ID") |
| | | @ColumnWidth(10) |
| | | private String id; |
| | | private String intakeId; |
| | | |
| | | @Schema(title = "取水口名称") |
| | | @ExcelProperty("取水口名称") |
| | | @ColumnWidth(15) |
| | | private String intakeName; |
| | | |
| | | @Schema(title = "分水房ID") |
| | | @ExcelProperty("分水房ID") |
| | | @ColumnWidth(10) |
| | | private String divideId; |
| | | |
| | | @Schema(title = "所属分水房") |
| | | @ExcelProperty("所属分水房") |
| | | @ColumnWidth(15) |
| | | private String divideName; |
| | | |
| | | @Schema(title = "片区ID") |
| | | @ExcelProperty("片区ID") |
| | | @ColumnWidth(15) |
| | | private String blockId; |
| | | |
| | | @Schema(title = "所属片区") |
| | | @ExcelProperty("所属片区") |
| | |
| | | @ColumnWidth(25) |
| | | private String address; |
| | | |
| | | @Schema(title = "经度") |
| | | @ExcelProperty("经度") |
| | | @ColumnWidth(25) |
| | | private String lng; |
| | | |
| | | @Schema(title = "纬度") |
| | | @ExcelProperty("纬度") |
| | | @ColumnWidth(25) |
| | | private String lat; |
| | | |
| | | @Schema(title = "操作人") |
| | | @ExcelProperty("操作人") |
| | | @ColumnWidth(25) |
| | | private String operator; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @Schema(title = "操作时间") |
| | | @ExcelIgnore |
| | | private Date operateDt; |
| | | |
| | | @Schema(title = "备注") |
| | | @ExcelProperty("备注") |
| | | @ColumnWidth(250) |
| | | private String remarks; |
| | | |
| | | @Schema(title = "控制器ID") |
| | | @ExcelProperty("控制器ID") |
| | | @ColumnWidth(15) |
| | | private String controllerId; |
| | | |
| | | @Schema(title = "控制器地址") |
| | | @ExcelProperty("控制器地址") |
| | | @ColumnWidth(15) |
| | | private String rtuAddr; |
| | | } |