package com.jcdm.main.em.inspectionPlan.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.jcdm.main.em.inspectionItems.domain.EmInspectionItems;
|
import com.jcdm.main.em.inspectionPlan.domain.EmInspectionPlan;
|
|
/**
|
* 点检保养计划Mapper接口
|
*
|
* @author Yi
|
* @date 2024-03-08
|
*/
|
public interface EmInspectionPlanMapper extends BaseMapper<EmInspectionPlan>
|
{
|
/**
|
* 查询点检保养计划
|
*
|
* @param id 点检保养计划主键
|
* @return 点检保养计划
|
*/
|
public EmInspectionPlan selectEmInspectionPlanById(Long id);
|
|
/**
|
* 查询点检保养计划列表
|
*
|
* @param emInspectionPlan 点检保养计划
|
* @return 点检保养计划集合
|
*/
|
public List<EmInspectionPlan> selectEmInspectionPlanList(EmInspectionPlan emInspectionPlan);
|
|
/**
|
* 新增点检保养计划
|
*
|
* @param emInspectionPlan 点检保养计划
|
* @return 结果
|
*/
|
public int insertEmInspectionPlan(EmInspectionPlan emInspectionPlan);
|
|
/**
|
* 修改点检保养计划
|
*
|
* @param emInspectionPlan 点检保养计划
|
* @return 结果
|
*/
|
public int updateEmInspectionPlan(EmInspectionPlan emInspectionPlan);
|
|
/**
|
* 删除点检保养计划
|
*
|
* @param id 点检保养计划主键
|
* @return 结果
|
*/
|
public int deleteEmInspectionPlanById(Long id);
|
|
/**
|
* 批量删除点检保养计划
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteEmInspectionPlanByIds(Long[] ids);
|
}
|