ZengTao
2025-03-13 75b98831417be414bc43e1832479d05d20cf6ac3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 org.apache.ibatis.annotations.Param;
 
/**
 * (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);
}