package com.mes.bigstoragecagetask.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.mes.bigstoragecagetask.entity.BigStorageCageHistoryTask;
|
import com.mes.largenscreen.entity.DailyProductionVO;
|
import com.mes.largenscreen.entity.RunTime;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* (BigStorageCageHistoryTask)表数据库访问层
|
*
|
* @author makejava
|
* @since 2024-11-13 22:46:47
|
*/
|
public interface BigStorageCageHistoryTaskMapper extends BaseMapper<BigStorageCageHistoryTask> {
|
|
DailyProductionVO queryBigDailyProduction(@Param("beginDate") String beginDate, @Param("endDate") String endDate);
|
|
List<RunTime> queryRunTimes();
|
}
|