getPartnerInfo 添加字段

This commit is contained in:
苏竹红
2023-12-26 12:11:54 +08:00
parent 483b60bf95
commit a34c9063df
11 changed files with 73 additions and 20 deletions

View File

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