package com.zy.asrs.mapper;
|
|
import com.zy.asrs.entity.WrkMastExecute;
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Mapper
|
@Repository
|
public interface WrkMastExecuteMapper extends BaseMapper<WrkMastExecute> {
|
|
WrkMastExecute getWrkMastByWrkNo(@Param("wrkNo") Long wrkNo);
|
|
List<WrkMastExecute> getWrkMastByJarId(@Param("jarId") Integer jarId);
|
|
List<WrkMastExecute> sselectWrkMastExecuteByType(@Param("type") Integer type);
|
|
List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(@Param("type")Integer type,@Param("ioType")Integer ioType);
|
|
|
Integer getWrkMastByJarIdCount(@Param("jarId") Integer jarId);
|
|
}
|