懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
package cn.stylefeng.guns.sys.modular.system.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
 
/**
 * <p>
 * 用户职位关联表
 * </p>
 *
 * @author stylefeng
 * @since 2019-06-28
 */
@TableName("sys_user_pos")
public class UserPos implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(value = "user_pos_id", type = IdType.ID_WORKER)
    private Long userPosId;
 
    /**
     * 用户id
     */
    @TableField("user_id")
    private Long userId;
 
    /**
     * 职位id
     */
    @TableField("pos_id")
    private Long posId;
 
 
    public Long getUserPosId() {
        return userPosId;
    }
 
    public void setUserPosId(Long userPosId) {
        this.userPosId = userPosId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getPosId() {
        return posId;
    }
 
    public void setPosId(Long posId) {
        this.posId = posId;
    }
 
    @Override
    public String toString() {
        return "UserPos{" +
        "userPosId=" + userPosId +
        ", userId=" + userId +
        ", posId=" + posId +
        "}";
    }
}