File was renamed from phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipQrCodeService.java |
| | |
| | | package com.hz.his.feign.service.platform; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.mp.MpQrCodeDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | | */ |
| | | @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-qrcode") |
| | | public interface SPhipQrCodeService { |
| | | public interface SPhipMpQrCodeService { |
| | | |
| | | /** |
| | | * 开放平台- 用户扫码登记模块 注册绑定后创建his助手小程序码(MpQrCodeController-userTempVisitQrCode方法) |
| | | */ |
| | | @PostMapping(value = "/user/create/temp/visit/qrcode") |
| | | Result userTempVisitQrCode(@RequestBody com.alibaba.fastjson.JSONObject jsonObject); |
| | | @PostMapping(value = "/mp/qrcode/user/temp/visit/qrcode") |
| | | Result userTempVisitQrCode(@RequestBody MpQrCodeDto mpQrCodeDto); |
| | | } |