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.
36 lines
592 B
Java
36 lines
592 B
Java
2 years ago
|
package com.glxp.api.constant;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
|
||
|
@Getter
|
||
|
@AllArgsConstructor
|
||
|
public enum BasicExportStatusEnum {
|
||
|
|
||
|
/**
|
||
|
* 任务待触发
|
||
|
*/
|
||
|
WAIT_TRIGGERED(1, "任务待触发"),
|
||
|
|
||
|
/**
|
||
|
* 文件待生成
|
||
|
*/
|
||
|
WAIT_BUILT(2, "文件待生成"),
|
||
|
|
||
|
/**
|
||
|
* 文件待同步
|
||
|
*/
|
||
|
WAIT_SYNC(3, "文件待同步"),
|
||
|
|
||
|
/**
|
||
|
* 任务完成
|
||
|
*/
|
||
|
COMPLETED(4, "任务完成"),
|
||
|
;
|
||
|
@EnumValue
|
||
|
private Integer code;
|
||
|
|
||
|
private String remark;
|
||
|
}
|