package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsShelf;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 托架管理Service接口
|
*
|
* @author ruoyi
|
* @date 2025-11-03
|
*/
|
public interface ITmsShelfService extends IService<TmsShelf>
|
{
|
/**
|
* 查询托架管理
|
*
|
* @param id 托架管理ID
|
* @return 托架管理
|
*/
|
public TmsShelf selectTmsShelfById(Integer id);
|
|
/**
|
* 查询托架管理 记录数
|
*
|
* @param tmsShelf 托架管理
|
* @return 托架管理集合
|
*/
|
public int selectTmsShelfCount(TmsShelf tmsShelf);
|
|
/**
|
* 查询托架管理列表
|
*
|
* @param tmsShelf 托架管理
|
* @return 托架管理集合
|
*/
|
public List<TmsShelf> selectTmsShelfList(TmsShelf tmsShelf);
|
|
/**
|
* 查询托架管理列表 异步 导出
|
*
|
* @param tmsShelf 托架管理
|
* @param exportKey 导出功能的唯一标识
|
* @return 托架管理集合
|
*/
|
public void export(TmsShelf tmsShelf, String exportKey) ;
|
|
|
/**
|
* 新增托架管理
|
*
|
* @param tmsShelf 托架管理
|
* @return 结果
|
*/
|
public int insertTmsShelf(TmsShelf tmsShelf);
|
|
/**
|
* 新增托架管理[批量]
|
*
|
* @param tmsShelfs 托架管理
|
* @return 结果
|
*/
|
public int insertTmsShelfBatch(List<TmsShelf> tmsShelfs);
|
|
/**
|
* 修改托架管理
|
*
|
* @param tmsShelf 托架管理
|
* @return 结果
|
*/
|
public int updateTmsShelf(TmsShelf tmsShelf);
|
|
/**
|
* 修改托架管理[批量]
|
*
|
* @param tmsShelfs 托架管理
|
* @return 结果
|
*/
|
public int updateTmsShelfBatch(List<TmsShelf> tmsShelfs);
|
/**
|
* 批量删除托架管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsShelfByIds(String ids);
|
|
/**
|
* 批量删除托架管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsShelfByIds(Integer[] ids);
|
|
/**
|
* 删除托架管理信息
|
*
|
* @param id 托架管理ID
|
* @return 结果
|
*/
|
public int deleteTmsShelfById(Integer id);
|
}
|