1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.system.domain.bo;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @author Mr.huang
| * @decription
| * @date 2023/9/11 17:14
| */
| @Data
| public class SysOperateTypeWholeNameBO implements Serializable {
|
| private Integer type;
|
| private String qualificationType;
|
| private String jobCategory;
|
| private String operationItems;
| }
|
|