houzhongjian
2025-05-29 41499fd3c28216c1526a72b10fa98eb8ffee78cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.iailab.module.ai.controller.admin.music.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.List;
 
@Schema(description = "管理后台 - AI 音乐 Response VO")
@Data
public class AiMusicRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "24790")
    private Long id;
 
    @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "12212")
    private Long userId;
 
    @Schema(description = "音乐名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "夜空中最亮的星")
    private String title;
 
    @Schema(description = "歌词", example = "oh~卖糕的")
    private String lyric;
 
    @Schema(description = "图片地址", example = "https://www.Iailab.cn")
    private String imageUrl;
 
    @Schema(description = "音频地址", example = "https://www.Iailab.cn")
    private String audioUrl;
 
    @Schema(description = "视频地址", example = "https://www.Iailab.cn")
    private String videoUrl;
 
    @Schema(description = "音乐状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "20")
    private Integer status;
 
    @Schema(description = "描述词", example = "一首轻快的歌曲")
    private String gptDescriptionPrompt;
 
    @Schema(description = "提示词", example = "创作一首带有轻松吉他旋律的流行歌曲,[verse] 描述夏日海滩的宁静,[chorus] 节奏加快,表达对自由的向往。")
    private String prompt;
 
    @Schema(description = "模型平台", requiredMode = Schema.RequiredMode.REQUIRED, example = "Suno")
    private String platform;
 
    @Schema(description = "模型", requiredMode = Schema.RequiredMode.REQUIRED, example = "chirp-v3.5")
    private String model;
 
    @Schema(description = "生成模式", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer generateMode;
 
    @Schema(description = "音乐风格标签")
    private List<String> tags;
 
    @Schema(description = "音乐时长", example = "[\"pop\",\"jazz\",\"punk\"]")
    private Double duration;
 
    @Schema(description = "是否发布", requiredMode = Schema.RequiredMode.REQUIRED, example = "true")
    private Boolean publicStatus;
 
    @Schema(description = "任务编号", example = "11369")
    private String taskId;
 
    @Schema(description = "错误信息")
    private String errorMessage;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}