huang
2025-11-04 1fa4f12a4b218412efeb9f72d4d3ee9e577351b0
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);
}