zhoushihao
2025-03-13 eb0e1f5cc324a6bf90ce39dcf999ca2c7c21b763
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);
}