exhibitionGroupId

This commit is contained in:
苏竹红
2024-01-08 17:38:29 +08:00
parent 4550c2476a
commit fd9e5d1040
4 changed files with 13 additions and 6 deletions

View File

@@ -257,8 +257,8 @@ public class PartnerController {
@GetMapping(path = "/getPartnerInfo")
@ApiOperation("线索基本信息")
public ResponseResult<PartnerUserBaseVO> getPartnerInfo(@RequestParam(value = "mobile")String mobile,
@RequestParam(value = "exhibitionId" ,required = false)Integer exhibitionId){
return ResponseResult.success(partnerUserInfoService.getPartnerInfo(mobile,exhibitionId));
@RequestParam(value = "exhibitionGroupId" )Integer exhibitionGroupId){
return ResponseResult.success(partnerUserInfoService.getPartnerInfo(mobile,null,exhibitionGroupId));
}
}