| | |
| | | package com.ruoyi.service.impl; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.domain.ZStayOut; |
| | | import com.ruoyi.mapper.ZStayOutMapper; |
| | | import com.ruoyi.service.ZStayOutService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class ZStayOutServiceImpl extends ServiceImpl<ZStayOutMapper, ZStayOut> implements ZStayOutService { |
| | | |
| | | @Override |
| | | public List<ZStayOut> selectStayOutList(Long userId) { |
| | | |
| | | LambdaQueryWrapper<ZStayOut> lqw = new LambdaQueryWrapper<>(); |
| | | lqw.eq(ZStayOut::getUserId,userId); |
| | | return list(lqw); |
| | | |
| | | } |
| | | } |