| | |
| | | import com.ruoyi.common.core.constant.ServiceNameConstants; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.other.api.domain.ShopBalanceStatement; |
| | | import com.ruoyi.other.api.domain.ShopBalanceStatementCopy; |
| | | import com.ruoyi.other.api.factory.ShopBalanceStatementClientFallbackFactory; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | |
| | | @PostMapping("/shop-balance-statement/saveShopBalanceStatement") |
| | | void saveShopBalanceStatement(@RequestBody ShopBalanceStatement shopBalanceStatement); |
| | | |
| | | @PostMapping("/shop-balance-statement/saveShopBalanceStatementCopy") |
| | | void saveShopBalanceStatementCopy(@RequestBody ShopBalanceStatementCopy shopBalanceStatement); |
| | | |
| | | @DeleteMapping("/shop-balance-statement/deleteShopBalanceStatementCopy") |
| | | 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); |
| | | |
| | | |
| | | /** |
| | | * 获取门店余额流水 |