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({