|
@@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import lombok.Data;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
@@ -41,6 +42,7 @@ public class SummaryHandleLog implements Serializable {
|
|
|
/**执行结果 0失败,1成功*/
|
|
|
@Excel(name = "执行结果 0失败,1成功", width = 15)
|
|
|
@ApiModelProperty(value = "执行结果 0失败,1成功")
|
|
|
+ @Dict(dicCode = "log_result_status")
|
|
|
private java.lang.Integer handleResult;
|
|
|
/**执行日志*/
|
|
|
@Excel(name = "执行日志", width = 15)
|
|
@@ -49,5 +51,6 @@ public class SummaryHandleLog implements Serializable {
|
|
|
/**记录类型:0主结果,1详细结果*/
|
|
|
@Excel(name = "记录类型:0主结果,1详细结果", width = 15)
|
|
|
@ApiModelProperty(value = "记录类型:0主结果,1详细结果")
|
|
|
+ @Dict(dicCode = "log_handle_type")
|
|
|
private java.lang.Integer logType;
|
|
|
}
|