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