| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * led熙讯文件表 |
| | | * |
| | | * @TableName led_s_file |
| | | */ |
| | | @TableName(value ="led_s_file") |
| | | @TableName(value = "led_s_file") |
| | | @Data |
| | | public class LedSFile implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long fileId; |
| | | |
| | | /** |
| | | * 客户ID |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 上级客户ID |
| | | */ |
| | | private Long cilentId; |
| | | |
| | |
| | | */ |
| | | private Long fileSize; |
| | | |
| | | |
| | | /** |
| | | * 缩略图 |
| | | */ |
| | | private String screenShot; |
| | | |
| | | /** |
| | | * md5 |
| | | */ |
| | | private String md5; |
| | | |
| | | /** |
| | | * 图片高度 |
| | | */ |
| | |
| | | */ |
| | | private Integer width; |
| | | |
| | | |
| | | /** |
| | | * 缩略图 |
| | | */ |
| | | private String screenShot; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private LocalDateTime createTime; |
| | | |