package com.tairui.app.cim.mapper;
|
|
import com.tairui.app.cim.dao.model.BusDeviceMain;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Select;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author yw
|
* @since 2022-05-21
|
*/
|
@Mapper
|
@Repository
|
public interface BusDeviceMainMapper extends BaseMapper<BusDeviceMain> {
|
|
@Select("select * from bus_device_main ")
|
public List<BusDeviceMain> listPage();
|
|
}
|