liusheng
2025-12-28 73f5b82df781d2b061ba24d29182f6898b5535d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.ServiceTransport;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 供者转运登记Mapper接口
 *
 * @author ruoyi
 * @date 2025-12-15
 */
@Mapper
public interface ServiceTransportMapper extends BaseMapper<ServiceTransport>
{
    /**
     * 查询供者转运登记列表
     *
     * @param serviceTransport 供者转运登记
     * @return 供者转运登记集合
     */
    public List<ServiceTransport> selectServiceTransportList(ServiceTransport serviceTransport);
}