| | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @TableName(value ="document_classification") |
| | | @Data |
| | | @ApiModel(value = "文档分类表") |
| | | @Schema(name = "文档分类表") |
| | | public class DocumentClassification implements Serializable { |
| | | /** |
| | | * |
| | |
| | | * 创建用户 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 修改时间 |
| | |
| | | * 修改用户 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Long updateUser; |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * 租户id |
| | |
| | | private Long tenantId; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |