package com.jcdm.main.em.inspectionItems.mapper;
|
|
import java.util.List;
|
import com.jcdm.main.em.inspectionItems.domain.EmInspectionItems;
|
|
/**
|
* 点检保养项目Mapper接口
|
*
|
* @author Yi
|
* @date 2024-03-08
|
*/
|
public interface EmInspectionItemsMapper
|
{
|
/**
|
* 查询点检保养项目
|
*
|
* @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 id 点检保养项目主键
|
* @return 结果
|
*/
|
public int deleteEmInspectionItemsById(Long id);
|
|
/**
|
* 批量删除点检保养项目
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteEmInspectionItemsByIds(Long[] ids);
|
}
|