rx
2023-09-21 68426f6bb5976e4852dfdb82f55fcb0e4fd9703a
提交 | 用户 | age
7dced1 1 package com.hz.his.feign.service.sync;
Z 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.sync.SyncUserProjectItem;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7
8 /**
9  * @Author
10  */
11 @FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-executionRecord")
12 public interface SyncExecutionRecordService {
13
14     /**
15      * 修改领健用户待执行数据为作废记录
16      * 注意不要随意调用,需要用到先和同步中心商量
17      * @param syncUserProjectItem
18      * @return
19      */
bd013b 20     @PostMapping(value = "/sync/executionRecord/updateUserProjectItem")
7dced1 21     Result updateUserProjectItm(SyncUserProjectItem syncUserProjectItem);
Z 22 }