package com.ruoyi.project.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.project.domain.ServiceTransportFile;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 供者转运登记附件Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-12-15
|
*/
|
@Mapper
|
public interface ServiceTransportFileMapper extends BaseMapper<ServiceTransportFile>
|
{
|
/**
|
* 查询供者转运登记附件列表
|
*
|
* @param serviceTransportFile 供者转运登记附件
|
* @return 供者转运登记附件集合
|
*/
|
public List<ServiceTransportFile> selectServiceTransportFileList(ServiceTransportFile serviceTransportFile);
|
}
|