You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
434 B
Java
17 lines
434 B
Java
1 year ago
|
package com.chenxuan.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.chenxuan.entity.model.BusiCenterRealStatistics;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author xuan
|
||
|
* @create 2020-07-07 1:26 PM
|
||
|
**/
|
||
|
@Mapper
|
||
|
public interface BusiCenterRealStatisticsMapper extends BaseMapper<BusiCenterRealStatistics> {
|
||
|
|
||
|
List<BusiCenterRealStatistics> selectMainDeviceList();
|
||
|
}
|