| | |
| | | import api.bean.LampEntity; |
| | | import api.bean.SinglelampDataEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | /**超级管理员查找全部*/ |
| | | List<SinglelampDataEntity> selectAll(); |
| | | /**普通管理员按公司查找*/ |
| | | List<SinglelampDataEntity> selectByCompany(Long userId); |
| | | List<SinglelampDataEntity> selectByCompany(@Param("page") Integer page, @Param("size") Integer size,@Param("userId") Long userId); |
| | | /**用户查找*/ |
| | | //List<SinglelampDataEntity> selectByUserId(Long userId); |
| | | /**单个灯杆数据*/ |