| | |
| | | package com.ruoyi.sales.pojo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | |
| | |
| | | private String url; |
| | | |
| | | /** 关联表 */ |
| | | private String type; |
| | | private Integer type; |
| | | |
| | | /** 文件大小 */ |
| | | private Long fileSize; |
| | | |
| | | /** 创建时间 */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | |
| | | /** 更新时间 */ |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |