fwq
2024-07-31 81ab3d0067133df70bcf881bba75af08112fa90d
提交 | 用户 | 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  */
3dac1b 11 @FeignClient(name="phi-platform-user",path = "/his_synchro",contextId = "synchro-executionRecord")
7dced1 12 public interface SyncExecutionRecordService {
Z 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 }