懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.sys.modular.system.model.result;
2
3 import lombok.Data;
4
5 import java.io.Serializable;
6
7 /**
8  * <p>
9  * 用户职位关联表
10  * </p>
11  *
12  * @author stylefeng
13  * @since 2019-06-28
14  */
15 @Data
16 public class UserPosResult implements Serializable {
17
18     private static final long serialVersionUID = 1L;
19
20
21     /**
22      * 主键id
23      */
24     private Long userPosId;
25
26     /**
27      * 用户id
28      */
29     private Long userId;
30
31     /**
32      * 职位id
33      */
34     private Long posId;
35
36 }