| | |
| | | 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; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @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 = "所属片区") |
| | | @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; |
| | | |
| | | @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; |
| | | } |