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.
udi-wms-java/src/main/java/com/glxp/api/res/thrsys/ThirdSysInterfaceExecuteVo....

29 lines
468 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.res.thrsys;
import lombok.Data;
/**
* 第三方系统接口执行状态VO
*/
@Data
public class ThirdSysInterfaceExecuteVo {
/**
* 接口任务Key
* 规则thirdI: + thirdId: + 接口名
* 例子thirdI:thirdId1:orderSubmitUrl
*/
private String key;
/**
* 下次执行的时间戳
*/
private long nextTime;
/**
* 任务是否执行完毕
*/
private boolean isFinished;
}