Revert "!6 fix: 代码生成字段和模板引用包缺失问题修复"

This reverts commit 4f6bd537d2.
This commit is contained in:
郝先瑞
2024-07-24 11:59:08 +00:00
committed by Gitee
parent 4f6bd537d2
commit 34d6f6e375
38 changed files with 136 additions and 1076 deletions

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.youlai.system.mapper.GenConfigMapper">
</mapper>

View File

@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.youlai.system.mapper.GenFieldConfigMapper">
<resultMap id="BaseResultMap" type="com.youlai.system.model.entity.GenFieldConfig">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="configId" column="config_id" jdbcType="BIGINT"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="type" column="type" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
<result property="showInList" column="show_in_list" jdbcType="TINYINT"/>
<result property="showInForm" column="show_in_form" jdbcType="TINYINT"/>
<result property="showInQuery" column="show_in_query" jdbcType="TINYINT"/>
<result property="formType" column="form_type" jdbcType="VARCHAR"/>
<result property="queryMethod" column="query_method" jdbcType="VARCHAR"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,config_id,name,
type,description,show_in_list,
show_in_form,show_in_query,form_type,
query_method,create_time,update_time
</sql>
</mapper>