From 1cfd9c23ed32934b5c78ae670d0c60af14596dbd Mon Sep 17 00:00:00 2001 From: pikaqiudeshujia Date: Tue, 30 Apr 2024 09:44:01 +0800 Subject: [PATCH] =?UTF-8?q?release-=E9=9F=B3=E4=B9=90=E4=BA=BA=E6=96=B0?= =?UTF-8?q?=E5=A2=9Escreenshot=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/luoo/user/dto/artist/ArtistRegisterDto.java | 4 ++++ luoo_user/src/main/java/com/luoo/user/pojo/ArtistInfo.java | 3 +++ luoo_user/src/main/resources/sql/20240430.sql | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 luoo_user/src/main/resources/sql/20240430.sql diff --git a/luoo_user/src/main/java/com/luoo/user/dto/artist/ArtistRegisterDto.java b/luoo_user/src/main/java/com/luoo/user/dto/artist/ArtistRegisterDto.java index d734647..ea69dd6 100644 --- a/luoo_user/src/main/java/com/luoo/user/dto/artist/ArtistRegisterDto.java +++ b/luoo_user/src/main/java/com/luoo/user/dto/artist/ArtistRegisterDto.java @@ -66,4 +66,8 @@ public class ArtistRegisterDto implements Serializable { @ApiModelProperty(name = "密码") @NotBlank(message = "密码必填") private String password; + + @ApiModelProperty(name = "播放器音乐人管理后台实时截图") + @NotBlank(message = "播放器音乐人管理后台实时截图必填") + private String screenshot; } diff --git a/luoo_user/src/main/java/com/luoo/user/pojo/ArtistInfo.java b/luoo_user/src/main/java/com/luoo/user/pojo/ArtistInfo.java index 49910ea..897496d 100644 --- a/luoo_user/src/main/java/com/luoo/user/pojo/ArtistInfo.java +++ b/luoo_user/src/main/java/com/luoo/user/pojo/ArtistInfo.java @@ -46,4 +46,7 @@ public class ArtistInfo implements Serializable { @ApiModelProperty(name = "艺人简介") private String description; + + @ApiModelProperty(name = "播放器音乐人管理后台实时截图") + private String screenshot; } diff --git a/luoo_user/src/main/resources/sql/20240430.sql b/luoo_user/src/main/resources/sql/20240430.sql new file mode 100644 index 0000000..7cf6253 --- /dev/null +++ b/luoo_user/src/main/resources/sql/20240430.sql @@ -0,0 +1,3 @@ +alter table tb_artist_info + add screenshot varchar(255) null comment '播放器音乐人管理后台实时截图'; +