chengf
2025-11-03 0016422e4475e7468e8c5b31c06eb9a27b2de6f6
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
package org.jeecg.modules.demo.copywriting.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import java.util.List;
 
import com.baomidou.mybatisplus.annotation.*;
import org.jeecg.common.constant.ProvinceCityArea;
import org.jeecg.common.util.SpringContextUtils;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.jeecg.modules.demo.contract.entity.SemanticWord;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: 文案
 * @Author: jeecg-boot
 * @Date:   2025-10-13
 * @Version: V1.0
 */
@Data
@TableName("copywriting")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@Schema(description="文案")
public class Copywriting implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键*/
    @TableId(type = IdType.ASSIGN_ID)
    @Schema(description = "主键")
    private java.lang.String id;;
    /**创建人*/
    @Schema(description = "创建人")
    private java.lang.String createBy;
    /**创建日期*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Schema(description = "创建日期")
    private java.util.Date createTime;
    /**更新人*/
    @Schema(description = "更新人")
    private java.lang.String updateBy;
    /**更新日期*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Schema(description = "更新日期")
    private java.util.Date updateTime;
    /**所属部门*/
    @Schema(description = "所属部门")
    private java.lang.String sysOrgCode;
    /**标题*/
    @Excel(name = "标题", width = 15)
    @Schema(description = "标题")
    private java.lang.String title;
    /**内容*/
    @Excel(name = "内容", width = 15)
    @Schema(description = "内容")
    private java.lang.String text;
    /**审核状态*/
    @Excel(name = "审核状态", width = 15, dicCode = "wa_status")
    @Dict(dicCode = "wa_status")
    @Schema(description = "审核状态")
    private java.lang.String status;
    /**审核时间*/
    @Excel(name = "审核时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Schema(description = "审核时间")
    private java.util.Date auditTime;
    /**审核人员*/
    @Excel(name = "审核人员", width = 15)
    @Schema(description = "审核人员")
    private java.lang.String auditer;
    /**驳回原因*/
    @Excel(name = "驳回原因", width = 15)
    @Schema(description = "驳回原因")
    private java.lang.String remark;
    /**推荐平台*/
    @Excel(name = "推荐平台", width = 15)
    @Schema(description = "推荐平台")
    private java.lang.String platform;
    /**语义词外键*/
    @Excel(name = "语义词外键", width = 15)
    @Schema(description = "语义词外键")
    private java.lang.String wordId;
    /**发布状态*/
    @Excel(name = "发布状态", width = 15)
    @Dict(dicCode = "fb_status")
    @Schema(description = "发布状态")
    private java.lang.String outStatus;
    /**发布时间*/
    @Excel(name = "发布时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Schema(description = "发布时间")
    private java.util.Date outTime;
 
    @TableField(exist = false)
    private SemanticWord semanticWord;
 
    @TableField(exist = false)
    private String titleLike;
 
    @TableField(exist = false)
    private String wordLike;
}