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.
27 lines
512 B
Java
27 lines
512 B
Java
package com.glxp.api.enums;
|
|
|
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
|
|
/**
|
|
* 对比记录状态
|
|
*/
|
|
@Getter
|
|
@AllArgsConstructor
|
|
public enum StockCompareStatusEnum {
|
|
|
|
DRAFT("draft", -1, "草稿"),
|
|
EXECUTING("executing", 1, "对比中"),
|
|
FINISHED("finished", 3, "对比完成"),
|
|
ERROR("error", 9, "异常"),
|
|
;
|
|
|
|
private final String key;
|
|
|
|
@EnumValue
|
|
private final Integer value;
|
|
|
|
private final String desc;
|
|
}
|