Lius
2024-10-24 a7a4e0e6ae09c720e50dc22fc50c67519414067c
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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);
 
}