开发订单查询

This commit is contained in:
2024-01-30 16:07:39 +08:00
parent 75963c02db
commit 9da453fa54
10 changed files with 25 additions and 27 deletions

View File

@@ -26,7 +26,7 @@ public class LeaderAddressController {
@Resource
private UserService userService;
@ApiOperation("提货点地址信息")
@ApiOperation("配送点地址信息")
@GetMapping("inner/getUserAddressByUserId/{userId}")
public LeaderAddressVo getUserAddressByUserId(@PathVariable("userId") Long userId) {
return userService.getLeaderAddressByUserId(userId);

View File

@@ -77,8 +77,8 @@ public class LoginWxService {
userService.save(user);
}
//5 根据userId查询提货点和配送员信息
////提货点 user表 user_delivery表
//5 根据userId查询配送点和配送员信息
////配送点 user表 user_delivery表
////配送员 leader表
LeaderAddressVo leaderAddressVo = userService.getLeaderAddressByUserId(user.getId());

View File

@@ -22,7 +22,7 @@ public interface UserService extends IService<User> {
User getUserByOpenId(String openid);
/**
* 根据userId查询提货点和配送员信息
* 根据userId查询配送点和配送员信息
*
* @param id
* @return