增加接口获取店铺某阶段状态
This commit is contained in:
@@ -76,7 +76,8 @@ public class DeskController {
|
||||
@ApiOperation("待处理-支付加盟费保证金")
|
||||
@GetMapping("/payFranchiseFeesPendingList")
|
||||
public ResponseResult<PageInfo<PreparationCommonPendingVO>> payFranchiseFeesPendingList(@RequestParam(value = "pageNumber", required = true, defaultValue = "1") Integer pageNumber,
|
||||
@RequestParam(value = "pageSize", required = true, defaultValue = "10") Integer pageSize , @RequestParam(value = "keyword") String keyword) {
|
||||
@RequestParam(value = "pageSize", required = true, defaultValue = "10") Integer pageSize ,
|
||||
@RequestParam(value = "keyword") String keyword) {
|
||||
LoginUserInfo userInfo = CurrentUserHolder.getUser();
|
||||
return ResponseResult.success(deskService.payFranchiseFeesPendingList(pageNumber, pageSize, userInfo,keyword));
|
||||
}
|
||||
|
||||
@@ -138,4 +138,10 @@ public class MiniShopController {
|
||||
return ResponseResult.success(shopService.getFranchiseBrandName(shopId));
|
||||
}
|
||||
|
||||
@ApiOperation("获取店铺某阶段状态")
|
||||
@GetMapping("/getShopStageStatus")
|
||||
public ResponseResult<ShopStageInfoVO> getShopStageStatus(@RequestParam("shopId")Long shopId, @RequestParam("subStage")Integer subStage) {
|
||||
return ResponseResult.success(shopService.getShopStageStatus(shopId, subStage));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user