ZengTao
2025-05-12 4037c71a2e622e83735e8aecad71b77aae007b3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mes.hollowtask.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.hollowtask.entity.HollowBigStorageCageHistoryTask;
import com.mes.largenscreen.entity.DailyProductionVO;
import com.mes.largenscreen.entity.RunTime;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * (HollowBigStorageCageHistoryTask)表数据库访问层
 *
 * @author makejava
 * @since 2024-11-27 15:22:46
 */
public interface HollowBigStorageCageHistoryTaskMapper extends BaseMapper<HollowBigStorageCageHistoryTask> {
 
    DailyProductionVO queryHollowDailyProduction(@Param("beginDate") String beginDate, @Param("endDate") String endDate);
 
    List<RunTime> queryRunTimes();
}