Junjie
2 天以前 2fe0faeef380c33b5dc56682ee816478971122d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zy.asrs.domain.vo.WrkTaskCountVo;
import com.zy.asrs.entity.WrkMast;
import org.apache.ibatis.annotations.*;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface WrkMastMapper extends BaseMapper<WrkMast> {
 
    WrkMast selectByWorkNo(Integer workNo);
 
    List<WrkTaskCountVo> selectCrnTaskCountList(@Param("inIoType") Integer inIoType);
 
    List<WrkTaskCountVo> selectDualCrnTaskCountList(@Param("inIoType") Integer inIoType);
 
}