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
| package cn.lihu.jh.module.system.api.dept.dto;
|
| import cn.lihu.jh.framework.common.enums.CommonStatusEnum;
| import lombok.Data;
|
| /**
| * 岗位 Response DTO
| *
| * @author 芋道源码
| */
| @Data
| public class PostRespDTO {
|
| /**
| * 岗位序号
| */
| private Long id;
| /**
| * 岗位名称
| */
| private String name;
| /**
| * 岗位编码
| */
| private String code;
| /**
| * 岗位排序
| */
| private Integer sort;
| /**
| * 状态
| *
| * 枚举 {@link CommonStatusEnum}
| */
| private Integer status;
|
| }
|
|