This commit is contained in:
gaochang 2024-01-08 09:32:10 +08:00
parent 58df49f91c
commit 6136a6685f
4 changed files with 6 additions and 3 deletions

View File

@ -63,7 +63,7 @@ public class CheckReportEntity implements Serializable {
private String checkReportType; private String checkReportType;
private Integer checkTimeConsuming; private int checkTimeConsuming;
/** /**
* 规则名称 * 规则名称

View File

@ -69,4 +69,6 @@ public class ScheduleJobEntity implements Serializable {
* 最后完成时间 * 最后完成时间
*/ */
private Date afterDate; private Date afterDate;
private String remark;
} }

View File

@ -26,7 +26,7 @@ public class CheckReportVo implements Serializable {
private String checkResult; private String checkResult;
private Integer checkTotalCount; private Integer checkTotalCount;
private String checkReportType; private String checkReportType;
private String checkTimeConsuming; private int checkTimeConsuming;
private Integer checkErrorCount; private Integer checkErrorCount;
private String ruleName; private String ruleName;
private String ruleType; private String ruleType;

View File

@ -13,13 +13,14 @@
<result column="method_params" property="methodParams" /> <result column="method_params" property="methodParams" />
<result column="cron_expression" property="cronExpression" /> <result column="cron_expression" property="cronExpression" />
<result column="after_date" property="afterDate" /> <result column="after_date" property="afterDate" />
<result column="remark" property="remark" />
</resultMap> </resultMap>
<!-- 通用查询结果列 --> <!-- 通用查询结果列 -->
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id, id,
status, status,
job_name, job_type, bean_name, method_name, method_params, cron_expression, after_date job_name, job_type, bean_name, method_name, method_params, cron_expression, after_date, remark
</sql> </sql>
</mapper> </mapper>