feat:职位表增加扩展
This commit is contained in:
@@ -63,4 +63,20 @@ CREATE TABLE `core_job_user`
|
||||
) ENGINE = InnoDB
|
||||
DEFAULT CHARSET = utf8mb4 COMMENT ='职位-用户';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table change for core_job_user
|
||||
-- ----------------------------
|
||||
|
||||
alter table core_job
|
||||
add ext1 varchar(255) null comment '扩展1';
|
||||
|
||||
alter table core_job
|
||||
add ext2 varchar(255) null comment '扩展2';
|
||||
|
||||
alter table core_job
|
||||
add ext3 varchar(500) null comment '扩展3';
|
||||
|
||||
alter table core_job
|
||||
add ext_text text null comment '扩展文本';
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
||||
@@ -11,9 +11,14 @@
|
||||
<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
|
||||
id, create_time, update_time, is_deleted, `name`, remark, is_system, ext1, ext2,
|
||||
ext3, ext_text
|
||||
</sql>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user