|
@@ -13,6 +13,7 @@
|
|
|
<result column="auto_pass_flag_" property="autoPassFlag"/>
|
|
|
<result column="create_time_" jdbcType="TIMESTAMP" property="createTime"/>
|
|
|
<result column="update_time_" jdbcType="TIMESTAMP" property="updateTime"/>
|
|
|
+ <result column="config_json_" jdbcType="VARCHAR" property="configJson"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
@@ -34,6 +35,9 @@
|
|
|
<if test="et.memo != null and et.memo != ''">
|
|
|
memo_ = #{et.memo},
|
|
|
</if>
|
|
|
+ <if test="et.configJson != null">
|
|
|
+ config_json_ = #{et.configJson},
|
|
|
+ </if>
|
|
|
update_time_ = NOW()
|
|
|
</set>
|
|
|
where id_ = #{et.id}
|