jiangqs
2023-06-08 6cca89c41aea52ae6b23909bb9fbd2834f0094d5
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
package com.ruoyi.system.domain.pojo.config;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 员工建议
 * </p>
 *
 * @author jqs
 * @since 2023-05-25
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("t_staff_suggest")
public class StaffSuggest extends Model<StaffSuggest> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 建议id
     */
    @TableId(value = "suggest_id", type = IdType.AUTO)
    private Integer suggestId;
    /**
     * 删除标记
     */
    @TableField("del_flag")
    private Integer delFlag;
    /**
     * 建议内容
     */
    @TableField("suggest_content")
    private String suggestContent;
    /**
     * 创建时间
     */
    @TableField("create_time")
    private Date createTime;
    /**
     * 创建人id
     */
    @TableField("create_user_id")
    private Integer createUserId;
    /**
     * 回复内容
     */
    @TableField("replay_content")
    private String replayContent;
    /**
     * 回复用户id
     */
    @TableField("replay_user_id")
    private Integer replayUserId;
    /**
     * 回复时间
     */
    @TableField("replay_time")
    private Date replayTime;
    /**
     * 商户id
     */
    @TableField("shop_id")
    private Integer shopId;
 
    /**
     * 商品标签
     */
    @TableField("suggest_tags")
    private String suggestTags;
 
    @Override
    protected Serializable pkVal() {
        return this.suggestId;
    }
 
}