修复工作

This commit is contained in:
2025-09-30 18:07:39 +08:00
parent 34a4c7912c
commit 730f508ff8
6 changed files with 19 additions and 16 deletions

View File

@@ -4,6 +4,7 @@
<resultMap id="VMinioObjectResult" type="com.ruoyi.video.domain.VMinioObject">
<id property="objectId" column="object_id" />
<result property="bucketName" column="bucket_name" />
<result property="objectName" column="object_name" />
<result property="url" column="url" />
<result property="originalName" column="original_name" />
@@ -17,6 +18,7 @@
<insert id="insertVMinioObject" parameterType="com.ruoyi.video.domain.VMinioObject" useGeneratedKeys="true" keyProperty="objectId">
INSERT INTO v_minio_object (
bucket_name,
object_name,
url,
original_name,
@@ -27,6 +29,7 @@
remark,
del_flag
) VALUES (
#{bucketName},
#{objectName},
#{url},
#{originalName},