|
|
@ -64,7 +64,7 @@ public class ArtistAlbum implements Serializable {
|
|
|
|
* 发行日期
|
|
|
|
* 发行日期
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("发行日期")
|
|
|
|
@ApiModelProperty("发行日期")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
private Date publishDate;
|
|
|
|
private Date publishDate;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -88,7 +88,7 @@ public class ArtistAlbum implements Serializable {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 创建时间
|
|
|
|
* 创建时间
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
@CreatedDate
|
|
|
|
@CreatedDate
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
private LocalDateTime createTime;
|
|
|
@ -96,7 +96,7 @@ public class ArtistAlbum implements Serializable {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 修改时间
|
|
|
|
* 修改时间
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
@LastModifiedDate
|
|
|
|
@LastModifiedDate
|
|
|
|
@ApiModelProperty("修改时间")
|
|
|
|
@ApiModelProperty("修改时间")
|
|
|
|
private LocalDateTime updateTime;
|
|
|
|
private LocalDateTime updateTime;
|
|
|
@ -144,5 +144,8 @@ public class ArtistAlbum implements Serializable {
|
|
|
|
@ApiModelProperty("专辑状态-中文")
|
|
|
|
@ApiModelProperty("专辑状态-中文")
|
|
|
|
private String stateStr;
|
|
|
|
private String stateStr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("专辑版本")
|
|
|
|
|
|
|
|
private Integer version;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|