package com.gkhy.safePlatform.equipment.repository; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.safePlatform.equipment.entity.MaterialDeliveryRecordDO; import com.gkhy.safePlatform.equipment.entity.MaterialReceiveRecordsBO; import com.gkhy.safePlatform.equipment.entity.MaterialReceiveRecordsDO; import com.gkhy.safePlatform.equipment.entity.MaterialReceiveRecordsInfo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface MaterialReceiveRecordsInfoRepository extends BaseMapper { MaterialDeliveryRecordDO getRecordBySmdId(@Param("smdId") Long smdId, @Param("revertStatus") Byte revertStatus); List getNoReturnRecordByIds(@Param("idList") List idList, @Param("revertStatus") Byte revertStatus); List getReceiveRecordsByReceiveUids(MaterialReceiveRecordsBO bo); }