feat:职位表增加扩展

This commit is contained in:
曾文豪
2023-03-28 17:12:01 +08:00
parent 60580b40a4
commit b5c10fc224
3 changed files with 118 additions and 1 deletions

View File

@@ -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>