导出放开限制,测量阶段通知

This commit is contained in:
shuo.wang
2025-04-30 15:15:07 +08:00
parent 921447d672
commit bbd03472d9
14 changed files with 112 additions and 13 deletions

View File

@@ -41,6 +41,14 @@
receiving_create_time, receiving_update_time, receiving_create_user, receiving_update_user,
declare_goods_type
</sql>
<update id="updateAddresseeAddress">
update xfsg_order_sys_info
<if test="update.addresseeAddress != null and update.addresseeAddress != ''">
set addressee_address = #{update.addresseeAddress}
</if>
where shop_id = #{update.shopId}
</update>
<select id="getSpecificByShopIdList" resultType="com.cool.store.entity.OrderSysInfoDO">
select
shop_id as shopId,

View File

@@ -190,4 +190,9 @@
#{shopId}
</foreach>
</select>
<select id="getPasswordIsNull" resultType="java.lang.Long">
SELECT shop_id as shopId FROM xfsg_shop_account
WHERE `password` is null and `system_name` = '火码POS'
</select>
</mapper>