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;
|
|
@Mapper
|
@Repository
|
public interface WrkMastExecuteMapper extends BaseMapper<WrkMastExecute> {
|
|
Integer getWrkMastByJarIdCount(@Param("jarId") Integer jarId);
|
|
}
|