提交 | 用户 | age
|
b7bb90
|
1 |
package com.hz.his.feign.service.platform; |
Z |
2 |
|
|
3 |
import com.alibaba.fastjson.JSONObject; |
|
4 |
import com.hx.resultTool.Result; |
|
5 |
import org.springframework.cloud.openfeign.FeignClient; |
|
6 |
import org.springframework.web.bind.annotation.PostMapping; |
|
7 |
import org.springframework.web.bind.annotation.RequestBody; |
|
8 |
|
|
9 |
/** |
|
10 |
* @Author |
|
11 |
*/ |
9435ca
|
12 |
@FeignClient(name="phi-platfrom-service",path = "/phip",contextId = "phip-meituan") |
b7bb90
|
13 |
public interface SPhipMeiTuanOrderService { |
Z |
14 |
|
|
15 |
/** |
|
16 |
* 美团订单推送crm验证 |
|
17 |
* @param jsonObject |
|
18 |
* orderId 美团订单id |
|
19 |
* phone 手机号 |
|
20 |
* @return |
|
21 |
*/ |
|
22 |
@PostMapping(value = "/meituan/order/sendCrm") |
|
23 |
Result sendCrm(@RequestBody JSONObject jsonObject); |
|
24 |
} |