huang
2025-05-20 2c2413760b6467bf62402dba7338bd3bbcbd7341
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.mes.md.service;
 
import com.github.yulichang.base.MPJBaseService;
import com.mes.md.entity.TaskLog;
import com.mes.md.entity.TaskingLog;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author wu
 * @since 2024-08-28
 */
public interface TaskingLogService extends MPJBaseService<TaskingLog> {
 
    /**
     * 查询完工数量-分线路
     */
    List<Map> selectTaskingLog(int dayCount);
 
    /**
     * 查询产量
     * @param dayCount 天数
     * @param startDate 开始日期
     * @param endDate 结束日期
     * @param taskType 任务类型
     * @param operationRecord 设备
     * @param lineType 生产线(1:一线,2:二线)
     * @return 产量数据列表
     */
    List<Map> selectMechanicalReport(int dayCount, Date startDate, Date endDate, String taskType, String operationRecord, String lineType);
 
    /**
     * 回传报工数据+ 设备玻璃过片记录给 九牧
     */
    Integer reportTaskingLog();
}