publish 0.9.2

This commit is contained in:
曾文豪
2023-03-28 17:56:59 +08:00
parent bfc578e77c
commit 06f295bb66
17 changed files with 130 additions and 134 deletions

View File

@@ -67,16 +67,16 @@ CREATE TABLE `core_job_user`
-- Table change for core_job_user
-- ----------------------------
alter table core_job
alter table core_job_user
add ext1 varchar(255) null comment '扩展1';
alter table core_job
alter table core_job_user
add ext2 varchar(255) null comment '扩展2';
alter table core_job
alter table core_job_user
add ext3 varchar(500) null comment '扩展3';
alter table core_job
alter table core_job_user
add ext_text text null comment '扩展文本';
SET FOREIGN_KEY_CHECKS = 1;

View File

@@ -11,14 +11,9 @@
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
<result column="is_system" jdbcType="INTEGER" property="isSystem" />
<result column="ext1" jdbcType="VARCHAR" property="ext1" />
<result column="ext2" jdbcType="VARCHAR" property="ext2" />
<result column="ext3" jdbcType="VARCHAR" property="ext3" />
<result column="ext_text" jdbcType="LONGVARCHAR" property="extText" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, create_time, update_time, is_deleted, `name`, remark, is_system, ext1, ext2,
ext3, ext_text
id, create_time, update_time, is_deleted, `name`, remark, is_system
</sql>
</mapper>

View File

@@ -10,10 +10,14 @@
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted" />
<result column="user_id" jdbcType="VARCHAR" property="userId" />
<result column="job_id" jdbcType="VARCHAR" property="jobId" />
<result column="ext1" jdbcType="VARCHAR" property="ext1" />
<result column="ext2" jdbcType="VARCHAR" property="ext2" />
<result column="ext3" jdbcType="VARCHAR" property="ext3" />
<result column="ext_text" jdbcType="LONGVARCHAR" property="extText" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, create_time, update_time, is_deleted, user_id, job_id
id, create_time, update_time, is_deleted, user_id, job_id, ext1, ext2, ext3, ext_text
</sql>
<select id="list" resultType="com.tiesheng.core.pojos.dto.job.JobUserOwner">
@@ -23,4 +27,4 @@
left join core_job cj on cj.id = cju.job_id
where cju.is_deleted=0 and cju.user_id=#{userId}
</select>
</mapper>
</mapper>