submitPartnerIntentInfo
This commit is contained in:
@@ -110,6 +110,12 @@ public class PartnerController {
|
||||
return ResponseResult.success(hyPartnerClerkService.submitPartnerClerkInfo(partnerClerkInfoRequest));
|
||||
}
|
||||
|
||||
@PostMapping(path = "/submitPartnerIntentInfo")
|
||||
@ApiOperation("提意向书意向信息/行业认知")
|
||||
public ResponseResult<String> submitPartnerIntentInfo(@RequestBody PartnerIntentInfoRequest partnerIntentInfoRequest){
|
||||
return ResponseResult.success(hyPartnerIntentInfoService.submitPartnerIntentInfo(partnerIntentInfoRequest));
|
||||
}
|
||||
|
||||
@PostMapping(path = "/submitWantShopInfo")
|
||||
@ApiOperation("提意向书意向信息")
|
||||
public ResponseResult<String> submitWantShopInfo(@RequestBody PartnerWantShopInfoRequest request){
|
||||
@@ -176,6 +182,15 @@ public class PartnerController {
|
||||
return ResponseResult.success(hyPartnerClerkService.queryPartnerClerkInfo(userInfoVO.getPartnerId(), lineId));
|
||||
}
|
||||
|
||||
@GetMapping(path = "/queryPartnerIntentInfo")
|
||||
@ApiOperation("查看意向申请书-意向信息/行业信息")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "lineId", value = "线索ID", required = false),
|
||||
})
|
||||
public ResponseResult<PartnerIntentInfoVO> queryPartnerIntentInfo(@RequestParam(value = "lineId",required = false)Long lineId){
|
||||
PartnerUserInfoVO userInfoVO = PartnerUserHolder.getUser();
|
||||
return ResponseResult.success(hyPartnerIntentInfoService.queryPartnerIntentInfo(userInfoVO, lineId));
|
||||
}
|
||||
|
||||
@GetMapping(path = "/queryWantShopInfo")
|
||||
@ApiOperation("查看意向申请书-意向信息")
|
||||
|
||||
Reference in New Issue
Block a user