kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
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
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-04-20
 */
@TableName("master_author_subscribe")
public class MasterAuthorSubscribe extends Model<MasterAuthorSubscribe> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    @TableField("menu_id")
    private String menuId;
 
    @TableField("user_id")
    private String userId;
 
    public String getId() {
        return id;
    }
 
    public MasterAuthorSubscribe setId(String id) {
        this.id = id;
        return this;
    }
 
    public String getMenuId() {
        return menuId;
    }
 
    public MasterAuthorSubscribe setMenuId(String menuId) {
        this.menuId = menuId;
        return this;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public MasterAuthorSubscribe setUserId(String userId) {
        this.userId = userId;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "MasterAuthorSubscribe{" +
        "id=" + id +
        ", menuId=" + menuId +
        ", userId=" + userId +
        "}";
    }
}