1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mes.largenscreen.mapper;
 
import com.mes.largenscreen.entity.DailyProductionVO;
 
import java.util.List;
 
/**
 * @Author : zhoush
 * @Date: 2025/3/12 14:46
 * @Description:
 */
 
public interface LargenScreenMapper {
 
    List<DailyProductionVO> queryDailyProduction(String beginDate, String endDate);
}