mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 20:54:26 +08:00
docs:更新云环境的nacos配置
This commit is contained in:
parent
3286f021f2
commit
6672bbc8cd
@ -10,39 +10,39 @@ import org.springframework.web.bind.annotation.*;
|
||||
@FeignClient(name = "mall-ums",contextId = "member")
|
||||
public interface MemberFeignClient {
|
||||
|
||||
@PostMapping("/v1/members")
|
||||
@PostMapping("/app-api/v1/members")
|
||||
Result add(@RequestBody UmsMember user);
|
||||
|
||||
/**
|
||||
* 获取会员信息
|
||||
*/
|
||||
@GetMapping("/v1/members/{id}")
|
||||
@GetMapping("/app-api/v1/members/{id}")
|
||||
Result<MemberDTO> getUserById(@PathVariable Long id);
|
||||
|
||||
|
||||
/**
|
||||
* 获取认证会员信息
|
||||
*/
|
||||
@GetMapping("/v1/members/openid/{openid}")
|
||||
@GetMapping("/app-api/v1/members/openid/{openid}")
|
||||
Result<AuthMemberDTO> getUserByOpenid(@PathVariable String openid);
|
||||
|
||||
/**
|
||||
* 修改会员积分
|
||||
*/
|
||||
@PutMapping("/v1/members/{id}/points")
|
||||
@PutMapping("/app-api/v1/members/{id}/points")
|
||||
Result updatePoint(@PathVariable Long id, @RequestParam Integer num);
|
||||
|
||||
/**
|
||||
* 扣减会员余额
|
||||
*/
|
||||
@PutMapping("/v1/members/{id}/deduct-balance")
|
||||
@PutMapping("/app-api/v1/members/{id}/deduct-balance")
|
||||
Result deductBalance(@PathVariable Long id, @RequestParam Long balance);
|
||||
|
||||
|
||||
/**
|
||||
* 获取会员余额
|
||||
*/
|
||||
@GetMapping("/v1/members/{id}/balance")
|
||||
@GetMapping("/app-api/v1/members/{id}/balance")
|
||||
Result<Long> getBalance(@PathVariable Long id);
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user