| | |
| | | private TokenService tokenService; |
| | | @Resource |
| | | private ShopBalanceStatementMapper shopBalanceStatementMapper; |
| | | |
| | | @Resource |
| | | private ShopService shopService; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 门店分佣统计 |
| | |
| | | |
| | | } |
| | | |
| | | @Resource |
| | | private ShopService shopService; |
| | | |
| | | @GetMapping("/commissionStatistics/info") |
| | | @ApiOperation(value = "门店余额明细上方数据", notes = "门店余额明细", tags = {"门店后台"}) |
| | | public R<ShopBalanceDto> shopCommissionStatisticsinfo(){ |
| | |
| | | public R<List<ShopBalanceStatement>> getList(@RequestBody ShopBalanceStatement shopBalanceStatement){ |
| | | return R.ok(shopBalanceStatementMapper.selectShopBalanceStatementList(shopBalanceStatement)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 保存门店余额流水 |
| | | * @param shopBalanceStatement |
| | | */ |
| | | @PostMapping("/saveShopBalanceStatement") |
| | | public void saveShopBalanceStatement(@RequestBody ShopBalanceStatement shopBalanceStatement){ |
| | | shopBalanceStatementService.save(shopBalanceStatement); |
| | | } |
| | | |
| | | } |
| | | |