C端接口
This commit is contained in:
@@ -14,6 +14,8 @@ import io.swagger.annotations.ApiOperation;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/5/29 20:04
|
||||
@@ -121,12 +123,12 @@ public class PartnerController {
|
||||
|
||||
|
||||
|
||||
@GetMapping(path = "/getPartnerLineDetail")
|
||||
@GetMapping(path = "/getPartnerLinBaseInfo")
|
||||
@ApiOperation("查询加盟商线索详情(适用全部流程) 包括冷静期是否首次登录")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "partnerId", value = "C端用户基本信息ID", required = false),
|
||||
})
|
||||
public ResponseResult<PartnerLineBaseInfoVO> getPartnerLineDetail(@PathVariable(value = "enterpriseId", required = false) String enterpriseId,
|
||||
public ResponseResult<PartnerLineBaseInfoVO> getPartnerLinBaseInfo(@PathVariable(value = "enterpriseId", required = false) String enterpriseId,
|
||||
@RequestParam(value = "partnerId",required = false)Long partnerId){
|
||||
|
||||
|
||||
@@ -134,12 +136,13 @@ public class PartnerController {
|
||||
}
|
||||
|
||||
|
||||
@GetMapping(path = "/queryPartnerIntentInfo")
|
||||
@ApiOperation("查看意向申请书")
|
||||
|
||||
@GetMapping(path = "/queryPartnerBaseInfo")
|
||||
@ApiOperation("查看意向申请书——基本信息")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "lineId", value = "线索ID", required = false),
|
||||
})
|
||||
public ResponseResult<PartnerSummaryInfoVO> queryPartnerIntentInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId,
|
||||
public ResponseResult<PartnerBaseInfoVO> queryPartnerBaseInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId,
|
||||
@RequestParam(value = "lineId",required = false)Long lineId){
|
||||
|
||||
|
||||
@@ -147,6 +150,34 @@ public class PartnerController {
|
||||
}
|
||||
|
||||
|
||||
@GetMapping(path = "/queryPartnerClerkInfo")
|
||||
@ApiOperation("查看意向申请书-店员信息")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "lineId", value = "线索ID", required = false),
|
||||
})
|
||||
public ResponseResult<List<PartnerClerkVO>> queryPartnerClerkInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId,
|
||||
@RequestParam(value = "lineId",required = false)Long lineId){
|
||||
|
||||
|
||||
return ResponseResult.success();
|
||||
}
|
||||
|
||||
|
||||
@GetMapping(path = "/queryPartnerIntentInfo")
|
||||
@ApiOperation("查看意向申请书-意向信息/行业信息")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "lineId", value = "线索ID", required = false),
|
||||
})
|
||||
public ResponseResult<PartnerIntentInfoVO> queryPartnerIntentInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId,
|
||||
@RequestParam(value = "lineId",required = false)Long lineId){
|
||||
|
||||
|
||||
return ResponseResult.success();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@GetMapping(path = "/completeJoinNotice")
|
||||
@ApiOperation("提交加盟须知")
|
||||
@ApiImplicitParams({
|
||||
|
||||
Reference in New Issue
Block a user