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

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

@@ -46,4 +46,7 @@ public class OrderSysInfoDAO {
}
return orderSysInfoMapper.getSpecificByShopIdList(shopIdList);
}
public Integer updateAddresseeAddress(OrderSysInfoDO orderSysInfoDO){
return orderSysInfoMapper.updateAddresseeAddress(orderSysInfoDO);
}
}

View File

@@ -157,5 +157,9 @@ public class ShopAccountDAO {
return shopAccountMapper.getSpecificByShopIds(shopIds);
}
//数据处理用
public List<Long> getPasswordIsNull(){
return shopAccountMapper.getPasswordIsNull();
}
}

View File

@@ -16,4 +16,7 @@ import java.util.List;
public interface OrderSysInfoMapper extends Mapper<OrderSysInfoDO> {
List<OrderSysInfoDO> getSpecificByShopIdList(@Param("list") List<Long> shopIdList);
Integer updateAddresseeAddress(@Param("update") OrderSysInfoDO orderSysInfoDO);
}

View File

@@ -96,6 +96,9 @@ public interface ShopAccountMapper extends Mapper<ShopAccountDO> {
*/
List<ShopAccountDO> getSpecificByShopIds(@Param("shopIds") List<Long> shopIds);
//数据处理用
List<Long> getPasswordIsNull();
}

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>