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
package org.jeecg.modules.mdcJc.service.impl;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdcJc.entity.*;
import org.jeecg.modules.mdcJc.mapper.ClassMonthlyscheduleMapper;
import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author clown
 * * @date 2024/7/15
 */
 
@Service
@DS("mesSoAdb")
public class ClassMonthlyScheduleServiceImpl extends ServiceImpl<ClassMonthlyscheduleMapper,ClassMonthlyschedule> implements IClassMonthlyScheduleService {
 
    @Override
    public List<ClassMonthlyschedule> findListClass(String dateTime) {
        return super.baseMapper.findListClass(dateTime);
    }
 
    @Override
    public List<ProductMonthlyschedule> findListProductMonth(String dateTime) {
        return super.baseMapper.findListProductMonth(dateTime);
    }
 
    @Override
    public List<QualityMonth> findListQualityMonth(String dateTime) {
        return super.baseMapper.findListQualityMonth(dateTime);
    }
 
    @Override
    public List<ProductDayschedule> findListProductDay(String dateTime) {
        return super.baseMapper.findListProductDay(dateTime);
    }
 
    @Override
    public List<OnLineQueue> onLineQueueList() {
        return super.baseMapper.onLineQueueList();
    }
 
    @Override
    public List<OnLineQueue> findListOnLineQueue(Integer id) {
        return super.baseMapper.findListOnLineQueue(id);
    }
 
    @Override
    public List<UnderLineQueue> underLineQueueList() {
        return super.baseMapper.underLineQueueList();
    }
 
    @Override
    public List<UnderLineQueue> findListUnderLineQueue(Integer id) {
        return super.baseMapper.findListUnderLineQueue(id);
    }
 
}