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
541 B
Java
21 lines
541 B
Java
package com.glxp.api.service.dev;
|
|
|
|
import com.glxp.api.entity.dev.DevicePlanEntity;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.glxp.api.req.dev.DevicePlanQuery;
|
|
import com.glxp.api.vo.dev.DevicePlanVo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 针对表【device_plan(设备巡检计划)】的数据库操作Service
|
|
*/
|
|
public interface DevicePlanService extends IService<DevicePlanEntity> {
|
|
|
|
List<DevicePlanVo> pageList(DevicePlanQuery query);
|
|
|
|
void deletePlan(Long planId);
|
|
|
|
void addExecCount(Long planId);
|
|
}
|