123456789101112131415 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.RmsCheckInfo;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.math.BigDecimal;
- @Mapper
- public interface RmsCheckInfoMapper extends IBaseMapper<RmsCheckInfo, BigDecimal> {
- int getMaxId();
- int selectCheckLuNo(String checkLuNo);
- }
|