|
@@ -69,4 +69,15 @@ public class UserReceiveAddressController {
|
|
|
this.userReceiveAddressClient.delete(id);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户常用地址详情
|
|
|
+ *
|
|
|
+ * @param id 用户常用地址主键
|
|
|
+ */
|
|
|
+ @PutMapping("/userReceiveAddress/queryById/{id}")
|
|
|
+ public UserReceiveAddressDTO queryById(@PathVariable("id") @Min(value = 1, message = "主键不能小于1") Long id) {
|
|
|
+ return this.userReceiveAddressClient.queryById(id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|