|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.hnac.hzinfo.inspect.ai.service.impl; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.hnac.hzinfo.inspect.ai.vo.RobotVO; |
|
|
|
|
import com.hnac.hzinfo.inspect.ai.wrapper.RobotWrapper; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
@ -28,7 +29,9 @@ public class RobotServiceImpl extends BaseServiceImpl<RobotMapper, RobotEntity>
|
|
|
|
|
public RobotVO getDetailByUserId(Long userId){ |
|
|
|
|
RobotEntity query = new RobotEntity(); |
|
|
|
|
query.setUserId(userId); |
|
|
|
|
RobotEntity robot = getOne(Condition.getQueryWrapper(query)); |
|
|
|
|
QueryWrapper<RobotEntity> queryWrapper = Condition.getQueryWrapper(query); |
|
|
|
|
queryWrapper.lambda().last("limit 1;"); |
|
|
|
|
RobotEntity robot = getOne(queryWrapper); |
|
|
|
|
RobotVO re = RobotWrapper.build().entityVO(robot); |
|
|
|
|
return re; |
|
|
|
|
} |
|
|
|
|