|
|
@@ -21,9 +21,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="genType" column="gen_type" />
|
|
|
<result property="genPath" column="gen_path" />
|
|
|
<result property="options" column="options" />
|
|
|
- <result property="createBy" column="create_by" />
|
|
|
+ <result property="createUser" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
- <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateUser" column="update_by" />
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
<result property="remark" column="remark" />
|
|
|
<collection property="columns" javaType="java.util.List" resultMap="GenTableColumnResult" />
|
|
|
@@ -48,9 +48,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="htmlType" column="html_type" />
|
|
|
<result property="dictType" column="dict_type" />
|
|
|
<result property="sort" column="sort" />
|
|
|
- <result property="createBy" column="create_by" />
|
|
|
+ <result property="createUser" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
- <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateUser" column="update_by" />
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
</resultMap>
|
|
|
|
|
|
@@ -144,7 +144,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="genType != null and genType != ''">gen_type,</if>
|
|
|
<if test="genPath != null and genPath != ''">gen_path,</if>
|
|
|
<if test="remark != null and remark != ''">remark,</if>
|
|
|
- <if test="createBy != null and createBy != ''">create_by,</if>
|
|
|
+ <if test="createUser != null and createUser != ''">create_by,</if>
|
|
|
create_time
|
|
|
)values(
|
|
|
<if test="tableName != null">#{tableName},</if>
|
|
|
@@ -160,7 +160,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="genType != null and genType != ''">#{genType},</if>
|
|
|
<if test="genPath != null and genPath != ''">#{genPath},</if>
|
|
|
<if test="remark != null and remark != ''">#{remark},</if>
|
|
|
- <if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
|
+ <if test="createUser != null and createUser != ''">#{createUser},</if>
|
|
|
sysdate()
|
|
|
)
|
|
|
</insert>
|
|
|
@@ -187,7 +187,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="businessName != null and businessName != ''">business_name = #{businessName},</if>
|
|
|
<if test="functionName != null and functionName != ''">function_name = #{functionName},</if>
|
|
|
<if test="options != null and options != ''">options = #{options},</if>
|
|
|
- <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
|
|
+ <if test="updateUser != null and updateUser != ''">update_by = #{updateUser},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
update_time = sysdate()
|
|
|
</set>
|