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;
}