|
|
@@ -243,9 +243,9 @@ public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> i
|
|
|
if (TokenUtil.validateToken(userId, userToken)) {
|
|
|
String id = requestMap.get("id");
|
|
|
PositionAPI position = positionMapper.getPosition(id);
|
|
|
- returnMap.put("positionDetail", position);
|
|
|
+ returnMap.put("position", position);
|
|
|
List<PositionAddress> positionAddress= positionAddressService.getByPositionId(position.getId());
|
|
|
- returnMap.put("address",list());
|
|
|
+ returnMap.put("address",positionAddress);
|
|
|
} else {
|
|
|
returnMap.put("success", "1004");
|
|
|
}
|