cloudroam
2025-06-11 fb514e661e644bc40dba3d2413a64ff5e86bf6be
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.mzl.flower.dto.response.film;
 
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import lombok.Data;
 
import java.time.LocalDateTime;
 
 
@Data
public class FilmWorksVO extends AbstractTransDTO {
    private Long id;
 
    /**
     * 中文名称
     */
    private String nameCn;
 
    /**
     * 英文名称
     */
    private String nameEn;
 
    /**
     * 作品类型
     */
    @DictTrans(target = "typeStr", codeType = "FILMSET_TYPE")
    private String type;
 
    private String typeStr;
 
    /**
     * 上映年份
     */
    private String releaseYear;
 
    /**
     * 导演(多个用逗号分隔)
     */
    private String director;
 
    /**
     * 制片方
     */
    private String producer;
 
    /**
     * 主要演员(多个用逗号分隔)
     */
    private String actors;
 
    /**
     * 剧情关键词(用逗号分隔)
     */
    private String keywords;
 
    /**
     * 剧情简介
     */
    private String synopsis;
 
    /**
     * 封面图片URL
     */
    private String coverUrl;
 
    /**
     * 封面图片描述文本
     */
    private String coverAlt;
 
 
    /**
     * 封面图片描述主题
     */
    private String coverTitle;
 
    /**
     * 创建者用户类型
     */
    @DictTrans(target = "userTypeStr", codeType = "FILMSET_CREATE_TYPE")
    private String userType;
 
 
    private String userTypeStr;
 
    /**
     * 置顶权重(越大越靠前)
     */
    private Integer stickyWeight;
 
    /**
     * 状态
     */
    @DictTrans(target = "statusStr", codeType = "COMMON_PUBLISH_STATUS")
    private String status;
 
    private String statusStr;
 
    /**
     * 创建者ID
     */
    private String createBy;
 
    /**
     * 最后修改者ID
     */
    private String updateBy;
 
    /**
     * 收藏量
     */
    private Integer collectCount;
 
    /**
     * 点赞量
     */
    private Integer likeCount;
 
    /**
     * 评论量
     */
    private Integer commentCount;
 
    /**
     * 分享量
     */
    private Integer shareCount;
 
    private Integer classify;
 
    private String tag;
 
    private String nickname;
 
    private String avatar;
 
    private LocalDateTime createTime;
 
    // 生成的文章内容
    private String filmContent;
 
 
    // 生成的图片
    private String filmPictures;
 
 
    private Boolean liked;
 
    private Boolean collected;
 
    /**
     * 收藏量
     */
    private Integer voCollectCount;
 
    /**
     * 点赞量
     */
    private Integer voLikeCount;
 
    /**
     * 评论量
     */
    private Integer voCommentCount;
 
}