package org.jeecg.modules.eam.service;
|
|
import org.jeecg.modules.eam.entity.EquipmentMaintenancePlan;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.io.Serializable;
|
import java.util.Collection;
|
|
/**
|
* @Description: 保养计划
|
* @Author: jeecg-boot
|
* @Date: 2023-10-16
|
* @Version: V1.0
|
*/
|
public interface IEquipmentMaintenancePlanService extends IService<EquipmentMaintenancePlan> {
|
|
/**
|
* 删除一对多
|
*
|
* @param id
|
*/
|
public void delMain (String id);
|
|
/**
|
* 批量删除一对多
|
*
|
* @param idList
|
*/
|
public void delBatchMain (Collection<? extends Serializable> idList);
|
|
|
}
|