package org.jeecg.modules.mdcJc.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.mdcJc.entity.*;
|
|
import java.util.List;
|
|
/**
|
* @author clown
|
* * @date 2024/7/15
|
*/
|
public interface IClassMonthlyScheduleService extends IService<ClassMonthlyschedule> {
|
|
|
/**
|
* 当月零部件
|
* @param dateTime
|
* @return
|
*/
|
List<ProductMonthlyschedule> findListProductMonth(String dateTime);
|
|
/**
|
* 查询某个月数据 月班组完成情况
|
* @param dateTime
|
* @return
|
*/
|
List<ClassMonthlyschedule> findListClass(String dateTime);
|
|
|
/**
|
* 月合格和不合格
|
* @param dateTime
|
* @return
|
*/
|
List<QualityMonth> findListQualityMonth( String dateTime);
|
|
/**
|
* 当日零部件
|
* @param dateTime
|
* @return
|
*/
|
List<ProductDayschedule> findListProductDay(String dateTime);
|
|
/**
|
* 自动线上线集合
|
* @return
|
*/
|
List<OnLineQueue> onLineQueueList();
|
|
/**
|
* 上线队列
|
* @return
|
*/
|
List<OnLineQueue> findListOnLineQueue(Integer id);
|
|
/**
|
* 下线集合
|
* @return
|
*/
|
List<UnderLineQueue> underLineQueueList();
|
|
/**
|
* 下线队列
|
* @return
|
*/
|
List<UnderLineQueue> findListUnderLineQueue(Integer id);
|
|
}
|