| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.NumberFormatHandler; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | /** $column.columnComment */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long materialId; |
| | | @Excel(name = "文件材料序号") |
| | | @Excel(name = "文件材料序号", handler = NumberFormatHandler.class) |
| | | private Long fileNumber; |
| | | |
| | | |
| | |
| | | private Date date; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "页号") |
| | | @Excel(name = "页号", handler = NumberFormatHandler.class) |
| | | private Long pageNumber; |
| | | |
| | | /** $column.columnComment */ |
| | |
| | | private String publicity; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "是否为附件") |
| | | @Excel(name = "是否为附件附图") |
| | | private String isAttachment; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "是否为附图") |
| | | // @Excel(name = "是否为附图") |
| | | private String isDiagram; |
| | | |
| | | /** $column.columnComment */ |