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
| package org.dromara.common.core.domain.dto;
|
| import lombok.Data;
| import lombok.NoArgsConstructor;
|
| import java.io.Serial;
| import java.io.Serializable;
|
| /**
| * 岗位
| *
| * @author AprilWind
| */
| @Data
| @NoArgsConstructor
| public class PostDTO implements Serializable {
|
| @Serial
| private static final long serialVersionUID = 1L;
|
| /**
| * 岗位ID
| */
| private Long postId;
|
| /**
| * 部门id
| */
| private Long deptId;
|
| /**
| * 岗位编码
| */
| private String postCode;
|
| /**
| * 岗位名称
| */
| private String postName;
|
| /**
| * 岗位类别编码
| */
| private String postCategory;
|
| }
|
|