copy from ycl-platform/src/main/java/com/ycl/entity/caseHandler/ImageResources.java
copy to ycl-platform/src/main/java/com/ycl/entity/resources/VideoResources.java
File was copied from ycl-platform/src/main/java/com/ycl/entity/caseHandler/ImageResources.java |
| | |
| | | package com.ycl.entity.caseHandler; |
| | | package com.ycl.entity.resources; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | |
| | | * |
| | | * </p> |
| | | * |
| | | * @author zhanghua |
| | | * @since 2022-10-21 |
| | | * @author lyq |
| | | * @since 2022-11-08 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @TableName("ums_image_resources") |
| | | public class ImageResources implements Serializable { |
| | | @TableName("ums_video_resources") |
| | | public class VideoResources implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | * 主键Id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 所属Id |
| | | */ |
| | | @TableField("belong_to_id") |
| | | private Long belongToId; |
| | | private Integer belongToId; |
| | | |
| | | /** |
| | | * 图片资源类型 01-上报 02-处置 |
| | | * 视频资源类型 01-视频上传 02-单兵 |
| | | */ |
| | | @TableField("type") |
| | | private String type; |
| | | |
| | | /** |
| | | * 图片路径 |
| | | * 视频路径 |
| | | */ |
| | | @TableField("url") |
| | | private String url; |
| | |
| | | * 创建人 |
| | | */ |
| | | @TableField("create_user") |
| | | private Long createUser; |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 创建时间 |