| | |
| | | return R.ok(taskSimpleVo); |
| | | } |
| | | |
| | | /** |
| | | * @description 获取商户下属代理商 |
| | | * @author jqs |
| | | * @date 2023/7/3 17:26 |
| | | * @return R<List<Long>> |
| | | */ |
| | | @PostMapping("/listShopIdByShopId") |
| | | public R<List<Long>> listShopIdByShopId(@RequestBody Long shopId) |
| | | { |
| | | List<Long> shopIdList = shopService.listShopIdByShopId(shopId); |
| | | return R.ok(shopIdList); |
| | | } |
| | | |
| | | /** |
| | | * @description 获取未回复数量 |
| | | * @author jqs |
| | | * @date 2023/7/5 12:49 |
| | | * @param |
| | | * @return R<Integer> |
| | | */ |
| | | @PostMapping("/getUnReplaySuggestVo") |
| | | public R<Integer> getUnReplaySuggestVo() |
| | | { |
| | | Integer count = shopSuggestService.getUnReplaySuggestVo(); |
| | | return R.ok(count); |
| | | } |
| | | } |