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.
|
|
|
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();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据时间和主变id获取数据
|
|
|
|
*
|
|
|
|
* @param mainId
|
|
|
|
* @param insTime
|
|
|
|
*/
|
|
|
|
BusiCenterRealStatistics getRealStatisticsByInsTime(String mainId, String insTime);
|
|
|
|
}
|