| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package top.lvzhiqiang.entity;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDate;
- import java.time.LocalDateTime;
- /**
- * 文件-音乐表
- *
- * @author lvzhiqiang
- * 2024/9/25 10:47
- */
- @Data
- public class FileMusicCollection implements Serializable {
- /**
- * 主键
- */
- private Long id;
- /**
- * 标题
- */
- private String title;
- /**
- * 歌手
- */
- private String singer;
- /**
- * 发行日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate issuingDate;
- /**
- * 时长
- */
- private String duration;
- /**
- * 大小
- */
- private String size;
- /**
- * 路径
- */
- private String highQualityUrl;
- private String lowQualityUrl;
- /**
- * 备注
- */
- private String remark;
- /**
- * 收藏日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate collectionDate;
- /**
- * 删除标志{1:正常,2:已删除}
- */
- private Integer deleteFlag;
- /**
- * 最后修改时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private LocalDateTime modifyTime;
- private String categoryName;
- private String categoryId;
- private String score;
- }
|