wl
2022-11-08 bdb4a481d7ab7085a0832a7f1c0f5295596d498c
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
package com.ycl.entity.message;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.Version;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 消息栏目设置表
 * </p>
 *
 * @author lyq
 * @since 2022-11-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_message_column_set")
public class MessageColumnSet implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键Id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 用户Id
     */
    @TableField("user_id")
    private Integer userId;
 
    /**
     * 栏目Id
     */
    @TableField("message_column_id")
    private Integer messageColumnId;
 
    /**
     * 是否接收0-不接收1-接收
     */
    @TableField("is_receive")
    private Integer isReceive;
 
 
}