|
@@ -48,6 +48,7 @@
|
|
|
<result column="batch_expire_date" property="batchExpireDate" />
|
|
|
<result column="bottom_line_price" property="bottomLinePrice" />
|
|
|
<result column="park_stock" property="parkStock" />
|
|
|
+ <result column="last_sale_time" property="lastSaleTime" jdbcType="TIMESTAMP"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="queryObject" resultType="com.kmall.admin.entity.ProductStoreRelaEntity">
|
|
@@ -558,7 +559,10 @@
|
|
|
park_stock = #{parkStock,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="bottomLinePrice != null" >
|
|
|
- bottom_line_price = #{bottomLinePrice,jdbcType=VARCHAR}
|
|
|
+ bottom_line_price = #{bottomLinePrice,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="lastSaleTime != null" >
|
|
|
+ last_sale_time = #{lastSaleTime,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id}
|