package com.glxp.api.service.inv; import com.glxp.api.dao.inv.DeviceInspectPlanDelectMapper; import com.glxp.api.entity.inv.DeviceInspectPlanDelectEntity; import com.baomidou.mybatisplus.extension.service.IService; import javax.annotation.Resource; import java.util.List; public interface DeviceInspectPlanDelectService extends IService { List selectDeviceInspectPlanDelect(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity); Boolean addDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity); Boolean uploadDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity); Boolean delectDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity); }