opai服务管理
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
593 B

package com.bw.ocr.entity;
import java.io.Serializable;
import java.util.Map;
import lombok.Data;
/**
* ES 索引:opai_app_result
* 应用执行结果文档
*
* @author jian.mao
*/
@Data
public class AppResultDoc implements Serializable {
private static final long serialVersionUID = 1L;
/** 完成时间(毫秒时间戳) */
private Long finishTime;
/** 执行状态 */
private Integer status;
/** 执行结果(可索引) */
private Map<String, Object> result;
/** 最后修改时间(毫秒时间戳) */
private Long lastEdit;
}