cmg
2024-04-30 3dac1b9697a7a214789cc2d95788a178a63be4aa
提交 | 用户 | 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  */
3dac1b 11 @FeignClient(name="phi-platform-user",path = "/his_synchro",contextId = "synchro-userCrad")
7ffb0c 12 public interface SyncUserCardService {
bd013b 13
Z 14
15     /**
16      * 修改领健用户卡包为已作废状态
17      * 注意不要随意调用,需要用到先和同步中心商量
18      * @param syncUserCradDto
19      * @return
20      */
21     @PostMapping(value = "/sync/user/card/updateUserCard")
22     Result updateUserCard(SyncUserCradDto syncUserCradDto);
a52403 23
Z 24     /**
25      * 同步用户卡包
26      * @param syncUserCradDto
27      * @return
28      */
29     @PostMapping(value = "/sync/user/card/list")
30     Result list(SyncUserCradDto syncUserCradDto);
bd013b 31 }