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.
17 lines
559 B
Java
17 lines
559 B
Java
2 years ago
|
package com.glxp.api.service.dev;
|
||
|
|
||
|
import com.glxp.api.entity.dev.DevicePlanDetailItemEntity;
|
||
|
import com.glxp.api.req.dev.DevicePlanDetailItemQuery;
|
||
|
import com.glxp.api.service.CustomService;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 针对表【device_plan_detail_item(巡检设备的项目)】的数据库操作Service
|
||
|
*/
|
||
|
public interface DevicePlanDetailItemService extends CustomService<DevicePlanDetailItemEntity> {
|
||
|
|
||
|
List<DevicePlanDetailItemEntity> listByPlanId(Long planId);
|
||
|
List<DevicePlanDetailItemEntity> pageList(DevicePlanDetailItemQuery query);
|
||
|
}
|