zhoushihao
2 天以前 4e3b8155722b66e25df3c6fd42cc586b68dea391
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mes.largenscreen.mapper;
 
import com.mes.largenscreen.entity.DailyProductionData;
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);
 
    List<DailyProductionData> exportDailyProduction(String beginDate, String endDate);
}