You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
839 B
Java
21 lines
839 B
Java
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<DeviceInspectPlanDelectEntity> {
|
|
|
|
List<DeviceInspectPlanDelectEntity> selectDeviceInspectPlanDelect(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity);
|
|
|
|
Boolean addDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity);
|
|
|
|
Boolean uploadDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity);
|
|
|
|
Boolean delectDeviceInspectPlanDelectEntity(DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity);
|
|
|
|
}
|