| | |
| | | package com.gkhy.exam.system.mapper; |
| | | |
| | | import com.gkhy.exam.system.domain.WarehousingRecordDetails; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.WarehousingRecord; |
| | | import com.gkhy.exam.system.domain.WarehousingRecordDetails; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Mapper |
| | | public interface WarehousingRecordDetailsMapper extends BaseMapper<WarehousingRecordDetails> { |
| | | |
| | | |
| | | List<WarehousingRecordDetails> selectWarehousingRecordDetailList(WarehousingRecord warehousingRecord); |
| | | } |