Pu Zhibing
2025-03-26 cbf2486983b77a27af9968bbb362cb8d43789115
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopPointController.java
@@ -127,6 +127,12 @@
    }
    
    
    @DeleteMapping("/deleteShopPointCopyByIds")
    public void deleteShopPointCopyByIds(@RequestParam("ids") List<Long> ids){
        shopPointCopyMapper.deleteBatchIds(ids);
    }
    @PostMapping("/getShopPointCopy")
    public R<List<ShopPointCopy>> getShopPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type){
        List<ShopPointCopy> shopPointCopies = shopPointCopyMapper.selectList(new LambdaQueryWrapper<ShopPointCopy>().in(ShopPointCopy::getType, type)