package com.ruoyi.tms.mapper;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsLoadingServiceProvider;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 装货服务商信息管理Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-11-10
|
*/
|
public interface TmsLoadingServiceProviderMapper extends BaseMapper<TmsLoadingServiceProvider>
|
{
|
/**
|
* 查询装货服务商信息管理
|
*
|
* @param id 装货服务商信息管理ID
|
* @return 装货服务商信息管理
|
*/
|
public TmsLoadingServiceProvider selectTmsLoadingServiceProviderById(Integer id);
|
|
/**
|
* 查询装货服务商信息管理 记录数
|
*
|
* @param tmsLoadingServiceProvider 装货服务商信息管理
|
* @return 装货服务商信息管理集合
|
*/
|
public int selectTmsLoadingServiceProviderCount(TmsLoadingServiceProvider tmsLoadingServiceProvider);
|
|
/**
|
* 查询装货服务商信息管理列表
|
*
|
* @param tmsLoadingServiceProvider 装货服务商信息管理
|
* @return 装货服务商信息管理集合
|
*/
|
public List<TmsLoadingServiceProvider> selectTmsLoadingServiceProviderList(TmsLoadingServiceProvider tmsLoadingServiceProvider);
|
|
/**
|
* 新增装货服务商信息管理
|
*
|
* @param tmsLoadingServiceProvider 装货服务商信息管理
|
* @return 结果
|
*/
|
public int insertTmsLoadingServiceProvider(TmsLoadingServiceProvider tmsLoadingServiceProvider);
|
|
/**
|
* 新增装货服务商信息管理[批量]
|
*
|
* @param tmsLoadingServiceProviders 装货服务商信息管理
|
* @return 结果
|
*/
|
public int insertTmsLoadingServiceProviderBatch(List<TmsLoadingServiceProvider> tmsLoadingServiceProviders);
|
|
/**
|
* 修改装货服务商信息管理
|
*
|
* @param tmsLoadingServiceProvider 装货服务商信息管理
|
* @return 结果
|
*/
|
public int updateTmsLoadingServiceProvider(TmsLoadingServiceProvider tmsLoadingServiceProvider);
|
|
/**
|
* 修改装货服务商信息管理[批量]
|
*
|
* @param tmsLoadingServiceProviders 装货服务商信息管理
|
* @return 结果
|
*/
|
public int updateTmsLoadingServiceProviderBatch(List<TmsLoadingServiceProvider> tmsLoadingServiceProviders);
|
|
/**
|
* 删除装货服务商信息管理
|
*
|
* @param id 装货服务商信息管理ID
|
* @return 结果
|
*/
|
public int deleteTmsLoadingServiceProviderById(Integer id);
|
|
/**
|
* 批量删除装货服务商信息管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsLoadingServiceProviderByIds(Integer[] ids);
|
}
|