From 9d0b9244045ca21013809662296c642c420e4ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E7=AB=B9=E7=BA=A2?= Date: Fri, 2 Jun 2023 15:08:11 +0800 Subject: [PATCH] =?UTF-8?q?C=E7=AB=AF=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/controller/PartnerController.java | 41 ++++++++++++++++--- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/coolstore-partner-webc/src/main/java/com/cool/store/controller/PartnerController.java b/coolstore-partner-webc/src/main/java/com/cool/store/controller/PartnerController.java index 769e73669..d387c74a7 100644 --- a/coolstore-partner-webc/src/main/java/com/cool/store/controller/PartnerController.java +++ b/coolstore-partner-webc/src/main/java/com/cool/store/controller/PartnerController.java @@ -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 getPartnerLineDetail(@PathVariable(value = "enterpriseId", required = false) String enterpriseId, + public ResponseResult 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 queryPartnerIntentInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId, + public ResponseResult 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> 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 queryPartnerIntentInfo(@PathVariable(value = "enterprise-id", required = false) String enterpriseId, + @RequestParam(value = "lineId",required = false)Long lineId){ + + + return ResponseResult.success(); + } + + + + @GetMapping(path = "/completeJoinNotice") @ApiOperation("提交加盟须知") @ApiImplicitParams({