y_ys79
2024-01-05 e5840972b6b17ec03bfc1069a9cacfe0cef189c6
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
package com.qianwen.mdc.mapper;
 
import org.apache.ibatis.annotations.Param;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.qianwen.mdc.domain.DncProcessing;
 
import java.util.List;
 
public interface DncProcessingMapper extends BaseMapper<DncProcessing> {
    /**
     *
     * @return
     */
    List<String> getComponentList();
 
    /**
     *
     * @return
     */
    List<String> getProcessList();
 
    /**
     *
     * @return
     */
    List<Integer> selectProgParseMachineList(@Param("component") String component, @Param("process") String process,
                @Param("timeBegin") String timeBegin, @Param("timeEnd") String timeEnd);
 
    /**
     *
     * @return
     */
    List<Integer> selectProgParseList(@Param("component") String component, @Param("process") String process,
                @Param("timeBegin") String timeBegin, @Param("timeEnd") String timeEnd);
}