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