|
@@ -37,6 +37,7 @@
|
|
|
<result column="activation_mode" property="activationMode" jdbcType="VARCHAR"/>
|
|
<result column="activation_mode" property="activationMode" jdbcType="VARCHAR"/>
|
|
|
<result column="aimPlaceId" property="aimPlaceId" jdbcType="VARCHAR"/>
|
|
<result column="aimPlaceId" property="aimPlaceId" jdbcType="VARCHAR"/>
|
|
|
<result column="template_ar_id" property="templateArId" jdbcType="VARCHAR"/>
|
|
<result column="template_ar_id" property="templateArId" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="modify_flag" property="modifyFlag" jdbcType="CHAR"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
|
<trim suffixOverrides=",">
|
|
<trim suffixOverrides=",">
|
|
@@ -97,6 +98,7 @@
|
|
|
activation_mode,
|
|
activation_mode,
|
|
|
aim_place_id,
|
|
aim_place_id,
|
|
|
template_ar_id,
|
|
template_ar_id,
|
|
|
|
|
+ modify_flag,
|
|
|
|
|
|
|
|
</trim>
|
|
</trim>
|
|
|
</sql>
|
|
</sql>
|
|
@@ -219,6 +221,9 @@
|
|
|
<if test="templateArId!= null">
|
|
<if test="templateArId!= null">
|
|
|
template_ar_id,
|
|
template_ar_id,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="modifyFlag!= null">
|
|
|
|
|
+ modify_flag,
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">
|
|
<if test="id != null">
|
|
@@ -326,6 +331,9 @@
|
|
|
<if test="templateArId != null">
|
|
<if test="templateArId != null">
|
|
|
#{templateArId,jdbcType=VARCHAR},
|
|
#{templateArId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="modifyFlag != null">
|
|
|
|
|
+ #{modifyFlag,jdbcType=CHAR},
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ArContent">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ArContent">
|
|
@@ -436,6 +444,9 @@
|
|
|
<if test="templateArId != null">
|
|
<if test="templateArId != null">
|
|
|
template_ar_id= #{templateArId,jdbcType=VARCHAR},
|
|
template_ar_id= #{templateArId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="modifyFlag != null">
|
|
|
|
|
+ modify_flag= #{modifyFlag,jdbcType=CHAR},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where
|
|
where
|
|
|
<if test="id != null and !"".equals(id)">
|
|
<if test="id != null and !"".equals(id)">
|