| | |
| | | import com.ruoyi.shop.service.shop.ShopSuggestService; |
| | | import com.ruoyi.shop.service.task.ShopTaskService; |
| | | import com.ruoyi.system.api.domain.dto.MgtBaseBathDto; |
| | | import com.ruoyi.system.api.domain.dto.MgtBasePlatformDto; |
| | | import com.ruoyi.system.api.domain.dto.MgtShopIdByCodeDto; |
| | | import com.ruoyi.system.api.domain.poji.shop.Shop; |
| | | import com.ruoyi.system.api.domain.poji.sys.SysUser; |
| | |
| | | bulletinBoardVo.setFollowShopToday(bulletinBoardVoTask.getFollowShopToday()); |
| | | return R.ok(bulletinBoardVo); |
| | | } |
| | | |
| | | /** |
| | | * @description 获取平台统计shopId |
| | | * @param mgtBasePlatformDto |
| | | * @return R<List<Long>> |
| | | * @author jqs34 |
| | | * @date 2023/6/23 14:14 |
| | | */ |
| | | @PostMapping("/listShopIdByPlTotal") |
| | | public R<List<Long>> listShopIdByPlTotal(@RequestBody MgtBasePlatformDto mgtBasePlatformDto) |
| | | { |
| | | List<Long> shopIdList = shopService.listShopIdByPlTotal(mgtBasePlatformDto); |
| | | return R.ok(shopIdList); |
| | | } |
| | | } |