C端接口

This commit is contained in:
苏竹红
2023-06-02 15:08:11 +08:00
parent 91ae5ac0ea
commit 9d0b924404

View File

@@ -14,6 +14,8 @@ import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import java.util.List;
/** /**
* @Author suzhuhong * @Author suzhuhong
* @Date 2023/5/29 20:04 * @Date 2023/5/29 20:04
@@ -121,12 +123,12 @@ public class PartnerController {
@GetMapping(path = "/getPartnerLineDetail") @GetMapping(path = "/getPartnerLinBaseInfo")
@ApiOperation("查询加盟商线索详情(适用全部流程) 包括冷静期是否首次登录") @ApiOperation("查询加盟商线索详情(适用全部流程) 包括冷静期是否首次登录")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "partnerId", value = "C端用户基本信息ID", required = false), @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){ @RequestParam(value = "partnerId",required = false)Long partnerId){
@@ -134,12 +136,13 @@ public class PartnerController {
} }
@GetMapping(path = "/queryPartnerIntentInfo")
@ApiOperation("查看意向申请书") @GetMapping(path = "/queryPartnerBaseInfo")
@ApiOperation("查看意向申请书——基本信息")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "lineId", value = "线索ID", required = false), @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){ @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") @GetMapping(path = "/completeJoinNotice")
@ApiOperation("提交加盟须知") @ApiOperation("提交加盟须知")
@ApiImplicitParams({ @ApiImplicitParams({