package com.jcdm.main.em.inspectionItems.service;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.jcdm.main.em.inspectionItems.domain.EmInspectionItems;
|
|
/**
|
* 点检保养项目Service接口
|
*
|
* @author Yi
|
* @date 2024-03-08
|
*/
|
public interface IEmInspectionItemsService extends IService<EmInspectionItems>
|
{
|
/**
|
* 查询点检保养项目
|
*
|
* @param id 点检保养项目主键
|
* @return 点检保养项目
|
*/
|
public EmInspectionItems selectEmInspectionItemsById(Long id);
|
|
/**
|
* 查询点检保养项目列表
|
*
|
* @param emInspectionItems 点检保养项目
|
* @return 点检保养项目集合
|
*/
|
public List<EmInspectionItems> selectEmInspectionItemsList(EmInspectionItems emInspectionItems);
|
|
/**
|
* 新增点检保养项目
|
*
|
* @param emInspectionItems 点检保养项目
|
* @return 结果
|
*/
|
public int insertEmInspectionItems(EmInspectionItems emInspectionItems);
|
|
/**
|
* 修改点检保养项目
|
*
|
* @param emInspectionItems 点检保养项目
|
* @return 结果
|
*/
|
public int updateEmInspectionItems(EmInspectionItems emInspectionItems);
|
|
/**
|
* 批量删除点检保养项目
|
*
|
* @param ids 需要删除的点检保养项目主键集合
|
* @return 结果
|
*/
|
public int deleteEmInspectionItemsByIds(Long[] ids);
|
|
/**
|
* 删除点检保养项目信息
|
*
|
* @param id 点检保养项目主键
|
* @return 结果
|
*/
|
public int deleteEmInspectionItemsById(Long id);
|
}
|