You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.5 KiB
64 lines
1.5 KiB
2 years ago
|
package com.psdc.mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import com.psdc.entity.PsdcStatisticsDay;
|
||
|
import com.psdc.entity.request.EnergyStatisticsRequest;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
import org.springframework.data.domain.Pageable;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 每日统计表;(psdc_statistics_day)表数据库访问层
|
||
|
* @date : 2023-5-11
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface PsdcStatisticsDayMapper{
|
||
|
/**
|
||
|
* 通过ID查询单条数据
|
||
|
*
|
||
|
* @param statisticsId 主键
|
||
|
* @return 实例对象
|
||
|
*/
|
||
|
PsdcStatisticsDay queryById(Integer statisticsId);
|
||
|
/**
|
||
|
* 分页查询指定行数据
|
||
|
*
|
||
|
* @param psdcStatisticsDay 查询条件
|
||
|
* @param pageable 分页对象
|
||
|
* @return 对象列表
|
||
|
*/
|
||
|
List<PsdcStatisticsDay> queryAllByLimit(EnergyStatisticsRequest energyStatisticsRequest);
|
||
|
|
||
|
/**
|
||
|
* 新增数据
|
||
|
*
|
||
|
* @param psdcStatisticsDay 实例对象
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
int insert(PsdcStatisticsDay psdcStatisticsDay);
|
||
|
|
||
|
/**
|
||
|
* 新增数据
|
||
|
*
|
||
|
* @param psdcStatisticsDay 实例对象
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
int insertDay(PsdcStatisticsDay psdcStatisticsDay);
|
||
|
|
||
|
/**
|
||
|
* 更新数据
|
||
|
*
|
||
|
* @param psdcStatisticsDay 实例对象
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
int update(PsdcStatisticsDay psdcStatisticsDay);
|
||
|
/**
|
||
|
* 通过主键删除数据
|
||
|
*
|
||
|
* @param statisticsId 主键
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
int deleteById(Integer statisticsId);
|
||
|
}
|