package com.ruoyi.tms.mapper;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsContainer;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 集装箱管理Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-11-03
|
*/
|
public interface TmsContainerMapper extends BaseMapper<TmsContainer>
|
{
|
/**
|
* 查询集装箱管理
|
*
|
* @param id 集装箱管理ID
|
* @return 集装箱管理
|
*/
|
public TmsContainer selectTmsContainerById(Integer id);
|
|
/**
|
* 查询集装箱管理 记录数
|
*
|
* @param tmsContainer 集装箱管理
|
* @return 集装箱管理集合
|
*/
|
public int selectTmsContainerCount(TmsContainer tmsContainer);
|
|
/**
|
* 查询集装箱管理列表
|
*
|
* @param tmsContainer 集装箱管理
|
* @return 集装箱管理集合
|
*/
|
public List<TmsContainer> selectTmsContainerList(TmsContainer tmsContainer);
|
|
/**
|
* 新增集装箱管理
|
*
|
* @param tmsContainer 集装箱管理
|
* @return 结果
|
*/
|
public int insertTmsContainer(TmsContainer tmsContainer);
|
|
/**
|
* 新增集装箱管理[批量]
|
*
|
* @param tmsContainers 集装箱管理
|
* @return 结果
|
*/
|
public int insertTmsContainerBatch(List<TmsContainer> tmsContainers);
|
|
/**
|
* 修改集装箱管理
|
*
|
* @param tmsContainer 集装箱管理
|
* @return 结果
|
*/
|
public int updateTmsContainer(TmsContainer tmsContainer);
|
|
/**
|
* 修改集装箱管理[批量]
|
*
|
* @param tmsContainers 集装箱管理
|
* @return 结果
|
*/
|
public int updateTmsContainerBatch(List<TmsContainer> tmsContainers);
|
|
/**
|
* 删除集装箱管理
|
*
|
* @param id 集装箱管理ID
|
* @return 结果
|
*/
|
public int deleteTmsContainerById(Integer id);
|
|
/**
|
* 批量删除集装箱管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsContainerByIds(Integer[] ids);
|
}
|