Junjie
7 小时以前 1817a79605b464735014a00e762e715788229a4b
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);
 
}