Lius
2024-08-22 f59452ac384766a21500857e89928a8abc0e75b5
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package org.jeecg.modules.mdcJc.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdcJc.entity.*;
 
import java.util.List;
 
/**
 * @author clown
 * * @date 2024/7/15 E:\work_yb\yt\mdc_yituo\lxzn-module-mdc\src\main\java\org\jeecg\modules\mdcJc\mapper
 */
public interface ClassMonthlyscheduleMapper extends BaseMapper<ClassMonthlyschedule> {
    /**
     * 查询某个月数据 月班组完成情况
     *
     * @param dateTime
     * @return
     */
    List<ClassMonthlyschedule> findListClass(@Param("dateTime") String dateTime);
 
    /**
     * 当月零部件计划进度信息
     *
     * @param dateTime
     * @return
     */
    List<ProductMonthlyschedule> findListProductMonth(@Param("dateTime") String dateTime);
 
    /**
     * 月合格和不合格
     *
     * @param dateTime
     * @return
     */
    List<QualityMonth> findListQualityMonth(@Param("dateTime") String dateTime);
 
    /**
     * 当日零部件
     *
     * @param dateTime
     * @return
     */
    List<ProductDayschedule> findListProductDay(@Param("dateTime") String dateTime);
 
    /**
     * 自动线上线
     *
     * @return
     */
    List<OnLineQueue> onLineQueueList();
 
    /**
     * 自动线上线
     *
     * @param id
     * @return
     */
    List<OnLineQueue> findListOnLineQueue(@Param("id") Integer id);
 
    /**
     * 自动线下线
     *
     * @return
     */
    List<UnderLineQueue> underLineQueueList();
 
    /**
     * 自动线下线
     *
     * @param id
     * @return
     */
    List<UnderLineQueue> findListUnderLineQueue(@Param("id") Integer id);
 
    /**
     * 获取昨日数据
     *
     * @param date
     * @return
     */
    MdcProductDayschedule findYesterdayData(@Param("date") String date);
}