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();
|
}
|