ZengTao
2025-05-20 dbbf0c051ef05480a0becee07974b80e32b1cb8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.mes.opctask.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.largenscreen.entity.DailyProductionVO;
import com.mes.opctask.entity.EdgStorageDeviceTaskHistory;
import org.apache.ibatis.annotations.Param;
 
/**
 * (EdgStorageDeviceTaskHistory)表数据库访问层
 *
 * @author makejava
 * @since 2024-10-27 21:04:29
 */
public interface EdgStorageDeviceTaskHistoryMapper extends BaseMapper<EdgStorageDeviceTaskHistory> {
 
    DailyProductionVO queryEdgDailyProduction(@Param("beginDate") String beginDate, @Param("endDate") String endDate, @Param("deviceId") Integer deviceId);
}