zhanghua
2022-11-09 7182dbfb374bef1f78d0698117e97137429f96cc
ycl-platform/src/main/java/com/ycl/entity/resources/VideoResources.java
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
@@ -1,4 +1,4 @@
package com.ycl.entity.caseHandler;
package com.ycl.entity.resources;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
@@ -15,13 +15,13 @@
 * 
 * </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;
@@ -29,22 +29,22 @@
     * 主键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;
@@ -53,7 +53,7 @@
     * 创建人
     */
    @TableField("create_user")
    private Long createUser;
    private Integer createUser;
    /**
     * 创建时间