ZengTao
2025-04-01 a52b87449e493d4312cc81c33a4169eb6be3c144
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);
}