| | |
| | | package com.dy.pipIrrGlobal.voPr; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | |
| | | @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(10) |
| | | private Long id; |
| | | |
| | | @Schema(title = "分水房编号") |
| | | @ExcelProperty("分水房编号") |
| | | @ColumnWidth(15) |
| | | private String divideId; |
| | | |
| | | @Schema(title = "分水房名称") |
| | | @ExcelProperty("分水房名称") |
| | | @ColumnWidth(15) |
| | | private String divideName; |
| | | |
| | | @Schema(title = "所属片区") |
| | | @Schema(title = "所属片区ID") |
| | | @ExcelProperty("所属片区ID") |
| | | @ColumnWidth(19) |
| | | private String blockId; |
| | | |
| | | @Schema(title = "所属片区名称") |
| | | @ExcelProperty("所属片区名称") |
| | | @ColumnWidth(15) |
| | | private String blockName; |
| | | |
| | | @Schema(title = "负责人") |
| | | @ExcelProperty("负责人") |
| | | @ColumnWidth(10) |
| | | private String header; |
| | | |
| | | @Schema(title = "联系电话") |
| | | @ExcelProperty("联系电话") |
| | | @ColumnWidth(15) |
| | | private String phone; |
| | | |
| | | @Schema(title = "归属地") |
| | | @ExcelProperty("归属地") |
| | | @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; |
| | | } |