package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsCarKeyDispatch;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 车钥匙分发记录Service接口
|
*
|
* @author ruoyi
|
* @date 2025-12-08
|
*/
|
public interface ITmsCarKeyDispatchService extends IService<TmsCarKeyDispatch>
|
{
|
/**
|
* 查询车钥匙分发记录
|
*
|
* @param id 车钥匙分发记录ID
|
* @return 车钥匙分发记录
|
*/
|
public TmsCarKeyDispatch selectTmsCarKeyDispatchById(Integer id);
|
|
/**
|
* 查询车钥匙分发记录 记录数
|
*
|
* @param tmsCarKeyDispatch 车钥匙分发记录
|
* @return 车钥匙分发记录集合
|
*/
|
public int selectTmsCarKeyDispatchCount(TmsCarKeyDispatch tmsCarKeyDispatch);
|
|
/**
|
* 查询车钥匙分发记录列表
|
*
|
* @param tmsCarKeyDispatch 车钥匙分发记录
|
* @return 车钥匙分发记录集合
|
*/
|
public List<TmsCarKeyDispatch> selectTmsCarKeyDispatchList(TmsCarKeyDispatch tmsCarKeyDispatch);
|
|
/**
|
* 查询车钥匙分发记录列表 异步 导出
|
*
|
* @param tmsCarKeyDispatch 车钥匙分发记录
|
* @param exportKey 导出功能的唯一标识
|
* @return 车钥匙分发记录集合
|
*/
|
public void export(TmsCarKeyDispatch tmsCarKeyDispatch, String exportKey) ;
|
|
|
/**
|
* 新增车钥匙分发记录
|
*
|
* @param tmsCarKeyDispatch 车钥匙分发记录
|
* @return 结果
|
*/
|
public int insertTmsCarKeyDispatch(TmsCarKeyDispatch tmsCarKeyDispatch);
|
|
/**
|
* 新增车钥匙分发记录[批量]
|
*
|
* @param tmsCarKeyDispatchs 车钥匙分发记录
|
* @return 结果
|
*/
|
public int insertTmsCarKeyDispatchBatch(List<TmsCarKeyDispatch> tmsCarKeyDispatchs);
|
|
/**
|
* 修改车钥匙分发记录
|
*
|
* @param tmsCarKeyDispatch 车钥匙分发记录
|
* @return 结果
|
*/
|
public int updateTmsCarKeyDispatch(TmsCarKeyDispatch tmsCarKeyDispatch);
|
|
/**
|
* 修改车钥匙分发记录[批量]
|
*
|
* @param tmsCarKeyDispatchs 车钥匙分发记录
|
* @return 结果
|
*/
|
public int updateTmsCarKeyDispatchBatch(List<TmsCarKeyDispatch> tmsCarKeyDispatchs);
|
/**
|
* 批量删除车钥匙分发记录
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsCarKeyDispatchByIds(String ids);
|
|
/**
|
* 批量删除车钥匙分发记录
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsCarKeyDispatchByIds(Integer[] ids);
|
|
/**
|
* 删除车钥匙分发记录信息
|
*
|
* @param id 车钥匙分发记录ID
|
* @return 结果
|
*/
|
public int deleteTmsCarKeyDispatchById(Integer id);
|
}
|