| | |
| | | @Data |
| | | @Schema(title = "分水房视图对象") |
| | | public class VoDivide implements BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | private static final long serialVersionUID = 202401241704004L; |
| | | |
| | | @Schema(title = "ID") |
| | | @ExcelProperty("ID") |
| | |
| | | @ColumnWidth(15) |
| | | private String divideName; |
| | | |
| | | @Schema(title = "所属片区") |
| | | @ExcelProperty("所属片区") |
| | | @Schema(title = "所属片区ID") |
| | | @ExcelProperty("所属片区ID") |
| | | @ColumnWidth(19) |
| | | private String blockId; |
| | | |
| | | @Schema(title = "所属片区名称") |
| | | @ExcelProperty("所属片区名称") |
| | | @ColumnWidth(15) |
| | | private String blockName; |
| | | |
| | |
| | | @ColumnWidth(25) |
| | | private String address; |
| | | |
| | | @Schema(title = "覆盖村") |
| | | @ExcelProperty("覆盖村") |
| | | @ColumnWidth(25) |
| | | private String villages; |
| | | |
| | | @Schema(title = "覆盖面积") |
| | | @ExcelProperty("覆盖面积") |
| | | @ColumnWidth(25) |
| | | private String area; |
| | | |
| | | @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; |
| | | } |