cloudroam
2025-06-06 70f642c9a5090f051814d46c8f5bbce5e366ba89
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
package com.mzl.flower.entity.film;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
import com.mzl.flower.base.BaseAutoEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 影视作品信息表
 *
 * @author generator@Fang
 * @since 2025-05-19
 */
@Data
@TableName("film_works")
public class FilmWorks extends BaseAutoEntity {
 
 
    /**
     * 中文名称
     */
    private String nameCn;
 
    /**
     * 英文名称
     */
    private String nameEn;
 
    /**
     * 作品类型
     */
    private String type;
 
    /**
     * 上映年份
     */
    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 userType;
 
    /**
     * 置顶权重(越大越靠前)
     */
    private Integer stickyWeight;
 
    /**
     * 状态(0禁用,1启用)
     */
    private String status;
 
    /**
     * 收藏量
     */
    private Integer collectCount;
 
    /**
     * 点赞量
     */
    private Integer likeCount;
 
    /**
     * 评论量
     */
    private Integer commentCount;
 
    /**
     * 分享量
     */
    private Integer shareCount;
 
    @ApiModelProperty("发布日期")
    private LocalDate publishDate;
 
    private Integer classify;
 
    private String tag;
 
    private String coverTitle;
 
    // 生成的文章内容
    private String filmContent;
 
 
    // 生成的图片
    private String filmPictures;
 
 
 
}