| | |
| | | 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; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * 【请填写功能名称】对象 document_materials |
| | | * 【文件材料综合信息】对象 document_materials |
| | | * |
| | | * @author ruoyi |
| | | * @date 2025-07-26 |
| | |
| | | /** $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 */ |