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.
21 lines
389 B
Java
21 lines
389 B
Java
package com.glxp.api.enums;
|
|
|
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
|
|
@Getter
|
|
@AllArgsConstructor
|
|
public enum DealStatusEnum {
|
|
|
|
NOT_CONFIRMED("not_confirmed", 1, "未处理"),
|
|
|
|
CONFIRMED("confirmed", 2, "已处理"),
|
|
;
|
|
|
|
final String key;
|
|
@EnumValue
|
|
final Integer value;
|
|
final String desc;
|
|
}
|