|
@@ -58,6 +58,7 @@ |
|
@@ -58,6 +58,7 @@ |
58
|
<result column="market_phrase" property="marketPhrase" jdbcType="VARCHAR"/>
|
58
|
<result column="market_phrase" property="marketPhrase" jdbcType="VARCHAR"/>
|
59
|
<result column="bundle_type" property="bundleType" jdbcType="INTEGER"/>
|
59
|
<result column="bundle_type" property="bundleType" jdbcType="INTEGER"/>
|
60
|
<result column="coupon_limit_status" property="couponLimitStatus" jdbcType="INTEGER"/>
|
60
|
<result column="coupon_limit_status" property="couponLimitStatus" jdbcType="INTEGER"/>
|
|
|
61
|
+ <result column="is_fobbiden" property="isFobbiden" jdbcType="INTEGER"/>
|
61
|
</resultMap>
|
62
|
</resultMap>
|
62
|
|
63
|
|
63
|
<sql id="Base_Column_List">
|
64
|
<sql id="Base_Column_List">
|
|
@@ -70,7 +71,7 @@ |
|
@@ -70,7 +71,7 @@ |
70
|
first_shelve_time,shelve_time,expect_arrival_time, create_time, arrival_time,
|
71
|
first_shelve_time,shelve_time,expect_arrival_time, create_time, arrival_time,
|
71
|
edit_time, auditing_time, is_down, status, is_edit,
|
72
|
edit_time, auditing_time, is_down, status, is_edit,
|
72
|
vip_discount_type, storage,is_outlets,folder_id,sell_channels,
|
73
|
vip_discount_type, storage,is_outlets,folder_id,sell_channels,
|
73
|
- elements, age_level,app_type,is_instalment,is_seckill,is_limitbuy,is_deposit_advance,market_phrase,bundle_type,coupon_limit_status
|
74
|
+ elements, age_level,app_type,is_instalment,is_seckill,is_limitbuy,is_deposit_advance,market_phrase,bundle_type,coupon_limit_status,is_fobbiden
|
74
|
</sql>
|
75
|
</sql>
|
75
|
|
76
|
|
76
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap"
|
77
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap"
|
|
@@ -119,7 +120,7 @@ |
|
@@ -119,7 +120,7 @@ |
119
|
status, is_edit, vip_discount_type,
|
120
|
status, is_edit, vip_discount_type,
|
120
|
storage,
|
121
|
storage,
|
121
|
is_outlets, folder_id,
|
122
|
is_outlets, folder_id,
|
122
|
- sell_channels, elements,age_level,app_type,is_instalment,is_seckill,is_deposit_advance,is_limitbuy,market_phrase,bundle_type,coupon_limit_status)
|
123
|
+ sell_channels, elements,age_level,app_type,is_instalment,is_seckill,is_deposit_advance,is_limitbuy,market_phrase,bundle_type,coupon_limit_status,is_fobbiden)
|
123
|
values
|
124
|
values
|
124
|
(#{id,jdbcType=INTEGER},
|
125
|
(#{id,jdbcType=INTEGER},
|
125
|
#{erpProductId,jdbcType=INTEGER},
|
126
|
#{erpProductId,jdbcType=INTEGER},
|
|
@@ -162,7 +163,8 @@ |
|
@@ -162,7 +163,8 @@ |
162
|
#{isLimitbuy,jdbcType=CHAR},
|
163
|
#{isLimitbuy,jdbcType=CHAR},
|
163
|
#{marketPhrase,jdbcType=VARCHAR},
|
164
|
#{marketPhrase,jdbcType=VARCHAR},
|
164
|
#{bundleType,jdbcType=INTEGER},
|
165
|
#{bundleType,jdbcType=INTEGER},
|
165
|
- #{couponLimitStatus,jdbcType=INTEGER}
|
166
|
+ #{couponLimitStatus,jdbcType=INTEGER},
|
|
|
167
|
+ #{isFobbiden,jdbcType=INTEGER}
|
166
|
)
|
168
|
)
|
167
|
</insert>
|
169
|
</insert>
|
168
|
|
170
|
|
|
@@ -333,6 +335,9 @@ |
|
@@ -333,6 +335,9 @@ |
333
|
<if test="couponLimitStatus != null">
|
335
|
<if test="couponLimitStatus != null">
|
334
|
coupon_limit_status = #{couponLimitStatus,jdbcType=INTEGER},
|
336
|
coupon_limit_status = #{couponLimitStatus,jdbcType=INTEGER},
|
335
|
</if>
|
337
|
</if>
|
|
|
338
|
+ <if test="couponLimitStatus != null">
|
|
|
339
|
+ is_fobbiden = #{isFobbiden,jdbcType=INTEGER},
|
|
|
340
|
+ </if>
|
336
|
</set>
|
341
|
</set>
|
337
|
where id = #{id,jdbcType=INTEGER}
|
342
|
where id = #{id,jdbcType=INTEGER}
|
338
|
</update>
|
343
|
</update>
|