...
|
...
|
@@ -61,12 +61,12 @@ |
|
|
</select>
|
|
|
<update id="saleSkup" parameterType="java.lang.Integer">
|
|
|
update storage_price set status = 2,
|
|
|
update_time = unix_timestamp(),
|
|
|
update_time = unix_timestamp()
|
|
|
where skup = #{skup,jdbcType=INTEGER} and status = 1
|
|
|
</update>
|
|
|
<update id="cancelSaleSkup" parameterType="java.lang.Integer">
|
|
|
update storage_price set status = 1,
|
|
|
update_time = unix_timestamp(),
|
|
|
update_time = unix_timestamp()
|
|
|
where skup = #{skup,jdbcType=INTEGER} and status = 2
|
|
|
</update>
|
|
|
<select id="selectLeastPrice" resultMap="BaseResultMap">
|
...
|
...
|
|