You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
377 B
Java
24 lines
377 B
Java
1 year ago
|
package com.glxp.api.enums;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
|
||
|
|
||
|
@Getter
|
||
|
@AllArgsConstructor
|
||
|
public enum ApprovalFlowEnum {
|
||
|
|
||
|
DSH(1, "待审核"),
|
||
|
TG(2, "通过"),
|
||
|
BH(3, "驳回"),
|
||
|
CX(4, "撤销")
|
||
|
;
|
||
|
|
||
|
|
||
|
@EnumValue
|
||
|
private final Integer code;
|
||
|
|
||
|
private final String name;
|
||
|
}
|