...
|
...
|
@@ -20,14 +20,14 @@ |
|
|
|
|
|
<update id="updateMetaValue">
|
|
|
update buyer_order_meta set meta_value=#{metaValue}
|
|
|
where order_code=#{orderCode} and meta_key=#{metaKey}
|
|
|
where order_code=#{orderCode,jdbcType=BIGINT} and meta_key=#{metaKey}
|
|
|
</update>
|
|
|
|
|
|
<select id="selectByBatchOrderCodeAndKey" resultMap="BaseResultMap">
|
|
|
select <include refid="Base_Column_List" />
|
|
|
from buyer_order_meta where meta_key=#{metaKey} and order_code in
|
|
|
<foreach collection="list" item="orderCode" open="(" separator="," close=")">
|
|
|
#{orderCode}
|
|
|
#{orderCode,jdbcType=BIGINT}
|
|
|
</foreach>
|
|
|
</select>
|
|
|
|
...
|
...
|
|