zxl
2025-12-18 8a2cd0388f1afc0ae6a7915fc9e3463f08bf980a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ycl.common.enums.business;
 
import lombok.Getter;
 
@Getter
public enum AuditTypeEnum {
    Submit("提交"),
    Review("审核"),
    Reject("驳回"),
    Forward("转交");
    private String desc;
    AuditTypeEnum(String desc) {
        this.desc = desc;
    }
}