publish 0.8.7
This commit is contained in:
@@ -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
|
||||
-- ----------------------------
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user