#
lsh
2024-06-25 f30358a20ae9a74ee7f6c604a8d102c1b9b24659
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
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);
 
}