| | |
| | | void saveShopBalanceStatement(@RequestBody ShopBalanceStatement shopBalanceStatement); |
| | | |
| | | @PostMapping("/shop-balance-statement/saveShopBalanceStatementCopy") |
| | | void saveShopBalanceStatement(@RequestBody ShopBalanceStatementCopy shopBalanceStatement); |
| | | void saveShopBalanceStatementCopy(@RequestBody ShopBalanceStatementCopy shopBalanceStatement); |
| | | |
| | | @DeleteMapping("/shop-balance-statement/deleteShopBalanceStatementCopy") |
| | | R<Boolean> deleteShopBalanceStatementCopy(@RequestParam("orderId") Long orderId); |
| | | R<Boolean> deleteShopBalanceStatementCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type); |
| | | |
| | | @DeleteMapping("/shop-balance-statement/deleteShopBalanceStatementCopyByIds") |
| | | R<Boolean> deleteShopBalanceStatementCopyByIds(@RequestParam("ids") List<Long> ids); |
| | | |
| | | @PostMapping("/shop-balance-statement/getShopBalanceStatementCopy") |
| | | R<List<ShopBalanceStatementCopy>> getShopBalanceStatementCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type); |
| | | |
| | | |
| | | /** |