publish 0.8.7

This commit is contained in:
2715557295@qq.com
2023-03-22 16:52:51 +08:00
parent 020d1d99e1
commit d63b6ab094
16 changed files with 64 additions and 25 deletions

View File

@@ -33,6 +33,8 @@ CREATE TABLE `core_log_process` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '日志-过程' ROW_FORMAT = Dynamic;
alter table core_log_process add 'status' int(6) not null default 0 comment '状态0-未完成,1-完成)';
-- ----------------------------
-- Records of core_log_process
-- ----------------------------

View File

@@ -13,9 +13,11 @@
<result column="success_num" jdbcType="INTEGER" property="successNum" />
<result column="fail_num" jdbcType="INTEGER" property="failNum" />
<result column="type" jdbcType="VARCHAR" property="type" />
<result column="status" jdbcType="INTEGER" property="status" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, create_time, update_time, is_deleted, title, total, success_num, fail_num, `type`
id, create_time, update_time, is_deleted, title, total, success_num, fail_num, `type`,
`status`
</sql>
</mapper>