zhangxu
2022-08-30 b37d55cfbc7386fa910b210790ffb5cfd490f923
提交 | 用户 | age
751531 1 package com.hz.his.feign.service.sync;
Z 2
3 /**
4  * @Author
5  */
6
b37d55 7 import net.sf.json.JSONObject;
751531 8 import org.springframework.cloud.openfeign.FeignClient;
Z 9 import com.hx.resultTool.Result;
2fafa9 10 import org.springframework.http.MediaType;
751531 11 import org.springframework.web.bind.annotation.PostMapping;
b37d55 12 import org.springframework.web.bind.annotation.RequestBody;
e81a31 13 import org.springframework.web.bind.annotation.RequestParam;
751531 14
Z 15 /**
16  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
17  */
18 @FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-user")
19 public interface SyncUserService {
20
21     /**
22      * 根据用户id同步用户基本信息,订单信息,可划扣信息,已划扣信息
23      * @param userId
24      * @return
25      */
0f5ea3 26     @PostMapping(value = "/user/consumption/data/list")
e81a31 27     Result userList(@RequestParam("userId") String userId);
751531 28     /**
Z 29      * 根据用户id同步用户基本信息
30      * @param userId
31      * @return
32      */
0f5ea3 33     @PostMapping(value = "/sync/user/syncUserById")
e81a31 34     Result syncUserById(@RequestParam("userId") String userId);
b37d55 35
Z 36     /** 主动同步创建顾客到his - 修改用户ciq和会员等级*/
37     @PostMapping("/sync/user/updateMembership")
38     Result updateMembership(@RequestBody JSONObject jsonObject);
39
751531 40 }