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