From bdb4a481d7ab7085a0832a7f1c0f5295596d498c Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期二, 08 十一月 2022 18:09:23 +0800
Subject: [PATCH] 图片管理和视频管理
---
ycl-platform/src/main/java/com/ycl/entity/resources/VideoResources.java | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/ycl-platform/src/main/java/com/ycl/entity/caseHandler/ImageResources.java b/ycl-platform/src/main/java/com/ycl/entity/resources/VideoResources.java
similarity index 73%
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
index e31a2bc..7d95cc9 100644
--- a/ycl-platform/src/main/java/com/ycl/entity/caseHandler/ImageResources.java
+++ b/ycl-platform/src/main/java/com/ycl/entity/resources/VideoResources.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;
/**
* 鎵�灞濱d
*/
@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;
/**
* 鍒涘缓鏃堕棿
--
Gitblit v1.8.0