huang
2025-12-05 73aa66976e35252378be3f09be2474193ccd0bf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.mes.feign;
 
import com.mes.result.Result;
import com.mes.tempering.compute.request.TemperingComputeRequest;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
/**
 * The interface Erp url open feign service.
 *
 * @Author : zhoush
 * @Date: 2025 /7/7 11:25
 * @Description:
 */
@FeignClient(name = "mesHub-service", url = "http://127.0.0.1:8079")
public interface MesHubOpenFeignService {
    /**
     * 模拟计算接口
     *
     * @param request the reporting work
     * @return result
     * @
     */
    @PostMapping("/computeTempering/inputTemperingData")
    Result<String> inputTemperingData(@RequestBody TemperingComputeRequest request);
 
 
}