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
| package cn.stylefeng.guns.sys.modular.system.model.params;
|
| import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * <p>
| * 用户职位关联表
| * </p>
| *
| * @author stylefeng
| * @since 2019-06-28
| */
| @Data
| public class UserPosParam implements Serializable, BaseValidatingParam {
|
| private static final long serialVersionUID = 1L;
|
|
| /**
| * 主键id
| */
| private Long userPosId;
|
| /**
| * 用户id
| */
| private Long userId;
|
| /**
| * 职位id
| */
| private Long posId;
|
| @Override
| public String checkParam() {
| return null;
| }
|
| }
|
|