xiangpei
2025-04-18 23da057f35cea1ee061adc23ccb9b7511635133b
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
package com.monkeylessey.enums;
 
/**
 * @author 29443
 */
 
public enum OperateTypeEnum {
 
    ADD("add"),
    DELETE("delete"),
    SELECT("select"),
    UPDATE("update");
 
    /**
     * 操作类型
     */
    private String type;
 
    public String getType() {
        return type;
    }
 
    OperateTypeEnum(String type) {
        this.type = type;
    }
}