Merge remote-tracking branch 'origin/dev/feat/partner1.6_20231226' into dev/feat/partner1.6_20231226

This commit is contained in:
feng.li
2023-12-26 13:21:14 +08:00
11 changed files with 78 additions and 22 deletions

View File

@@ -346,7 +346,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));
}
}