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 com.yuanchu.limslaboratory.enums;
|
| /**
| * @Author 张宾
| * @Date 2023/8/30
| */
| public enum InterfaceType {
|
| /**
| * 接口类型
| */
| SELECT("select",0),
| ADD("add",1),
| UPDATE("update",2),
| DELETE("delete",3),
| NUll();
|
|
| private String type;
|
| private Integer num;
|
| public String getType() {
| return type;
| }
|
| InterfaceType() {
| }
|
| public void setType(String type) {
| this.type = type;
| }
|
| public Integer getNum() {
| return this.num;
| }
|
| public void setNum(Integer num) {
| this.num = num;
| }
|
| InterfaceType(String type, Integer num) {
| this.type = type;
| this.num = num;
| }
| }
|
|