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);
|
}
|