wangrenhuang
2022-10-19 60c85a79c395e96292d795650f7564bd5e622ce6
提交 | 用户 | age
bd013b 1 package com.hz.his.feign.service.sync;
Z 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.sync.SyncUserCradDto;
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-userCrad")
12 public interface SyncUserCard {
13
14
15     /**
16      * 修改领健用户卡包为已作废状态
17      * 注意不要随意调用,需要用到先和同步中心商量
18      * @param syncUserCradDto
19      * @return
20      */
21     @PostMapping(value = "/sync/user/card/updateUserCard")
22     Result updateUserCard(SyncUserCradDto syncUserCradDto);
23 }