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 '播放器音乐人管理后台实时截图'; +