fix
This commit is contained in:
@@ -63,5 +63,10 @@ public class PCLinePayController {
|
||||
public ResponseResult<Boolean> deleteFranchiseFeePayInfo(@RequestParam("id") Long id) {
|
||||
return ResponseResult.success(linePayService.deleteFranchiseFeePayInfo(id, CurrentUserHolder.getUserId()));
|
||||
}
|
||||
@ApiOperation("查询缴费信息")
|
||||
@GetMapping("/getById")
|
||||
public ResponseResult<FranchiseFeePayInfoResponse> getById(@RequestParam("id") Long id) {
|
||||
return ResponseResult.success(linePayService.getById(id));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -74,4 +74,9 @@ public class LinePayController {
|
||||
return ResponseResult.success(linePayService.deleteFranchiseFeePayInfo(id, PartnerUserHolder.getUser().getPartnerId()));
|
||||
}
|
||||
|
||||
@ApiOperation("查询缴费信息")
|
||||
@GetMapping("/getById")
|
||||
public ResponseResult<FranchiseFeePayInfoResponse> getById(@RequestParam("id") Long id) {
|
||||
return ResponseResult.success(linePayService.getById(id));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user