feat:选址阶段 地址优化

This commit is contained in:
shuo.wang
2025-05-08 17:04:39 +08:00
parent 93b845f805
commit f645122919

View File

@@ -46,7 +46,15 @@
<if test="update.addresseeAddress != null and update.addresseeAddress != ''">
set addressee_address = #{update.addresseeAddress}
</if>
<if test="update.addresseeProvince !=null and update.addresseeProvince != ''">
set addressee_province = #{update.addresseeProvince}
</if>
<if test="update.addresseeCity !=null and update.addresseeCity != ''">
set addressee_city = #{update.addresseeCity}
</if>
<if test="update.addresseeDistrict !=null and update.addresseeDistrict != ''">
set addressee_district = #{update.addresseeDistrict}
</if>
where shop_id = #{update.shopId}
</update>
<select id="getSpecificByShopIdList" resultType="com.cool.store.entity.OrderSysInfoDO">