#
lsh
2024-06-27 efad59da8921d93537fca47d6ec2512e312bc1c3
src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
@@ -12,15 +12,19 @@
@Repository
public interface WrkMastExecuteMapper extends BaseMapper<WrkMastExecute> {
    WrkMastExecute getWrkMastByWrkNo(@Param("wrkNo") Long wrkNo);
    WrkMastExecute getWrkMastExecuteByWrkNo(@Param("wrkNo") Long wrkNo);
    List<WrkMastExecute> getWrkMastByJarId(@Param("jarId") Integer jarId);
    List<WrkMastExecute> getWrkMastExecuteByJarNo(@Param("jarId") Integer jarId);
    List<WrkMastExecute> sselectWrkMastExecuteByType(@Param("type") Integer type);
    List<WrkMastExecute> selectWrkMastExecuteByType(@Param("type") Integer type);
    List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(@Param("type")Integer type,@Param("ioType")Integer ioType);
    List<WrkMastExecute> selectWrkMastExecuteByTypeAndIoTyperAndWrkType(@Param("type")Integer type,@Param("ioType")Integer ioType,@Param("wrkSts")Integer wrkSts);
    List<WrkMastExecute> selectWrkMastExecuteByWrk(@Param("type")Integer type,@Param("ioType")Integer ioType,
                                                   @Param("wrkSts")Integer wrkSts,@Param("steNo")Integer steNo,
                                                   @Param("jarNo")Integer jarNo,@Param("rgvNo")Integer rgvNo);
    Integer getWrkMastByJarIdCount(@Param("jarId") Integer jarId);
    Integer getWrkMastExecuteByJarIdCount(@Param("jarId") Integer jarId);
}