package com.zy.asrs.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.zy.asrs.entity.WrkLastno;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
@Mapper
|
@Repository
|
public interface WrkLastnoMapper extends BaseMapper<WrkLastno> {
|
|
WrkLastno selectByWrkMkForUpdate(@Param("wrkMk") Integer wrkMk);
|
}
|