| | |
| | | import com.ruoyi.common.core.exception.ServiceException; |
| | | import com.ruoyi.common.core.utils.StringUtils; |
| | | import com.ruoyi.common.core.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.common.security.service.TokenService; |
| | | import com.ruoyi.other.api.domain.Shop; |
| | | import com.ruoyi.other.api.domain.ShopBalanceStatement; |
| | |
| | | import com.ruoyi.other.service.ShopBalanceStatementService; |
| | | import com.ruoyi.other.service.ShopService; |
| | | |
| | | import com.ruoyi.other.vo.ShopBalanceStatementDetailPage; |
| | | import com.ruoyi.other.vo.ShopCommission; |
| | | import com.ruoyi.other.vo.ShopCommissionDetail; |
| | | import com.ruoyi.other.vo.*; |
| | | |
| | | import com.ruoyi.system.api.domain.SysUser; |
| | | import com.ruoyi.system.api.feignClient.SysUserClient; |
| | |
| | | }*/ |
| | | |
| | | |
| | | /** |
| | | * 获取门店流水数据 |
| | | * |
| | | * @param types |
| | | * @param objectId |
| | | * @return |
| | | */ |
| | | @GetMapping("/getShopBalanceStatementPageList") |
| | | public R<PageInfo<ShopBalanceStatementVO>> getShopBalanceStatementPageList(@RequestParam("types") Collection<Integer> types, |
| | | @RequestParam(value = "objectId", required = false) Long objectId, |
| | | @RequestParam(value = "id") Integer id, |
| | | @ApiParam("当前页")@RequestParam("pageCurr") Integer pageCurr, |
| | | @ApiParam("分页大小")@RequestParam("pageSize") Integer pageSize) { |
| | | PageInfo<ShopBalanceStatementVO> pageInfo=shopBalanceStatementService.getShopBalanceStatementPageList(types,objectId,id,pageCurr,pageSize); |
| | | |
| | | return R.ok(pageInfo); |
| | | } |
| | | |
| | | |
| | | } |
| | | |