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.
28 lines
851 B
Java
28 lines
851 B
Java
1 year ago
|
package com.glxp.api.service.dev;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.glxp.api.entity.auth.AuthAdmin;
|
||
|
import com.glxp.api.entity.dev.DeviceCheckDetailEntity;
|
||
|
import com.glxp.api.entity.dev.DeviceUpkeepDetailEntity;
|
||
|
import com.glxp.api.req.dev.DeviceUpkeepDetailQuery;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 针对表【device_upkeep_detail(保养任务明细)】的数据库操作Service
|
||
|
*/
|
||
|
public interface DeviceUpkeepDetailService extends IService<DeviceUpkeepDetailEntity> {
|
||
|
|
||
|
|
||
|
List<DeviceUpkeepDetailEntity> pageList(DeviceUpkeepDetailQuery query);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
List<DeviceUpkeepDetailEntity> listByTaskId(Long taskId, String deviceCode);
|
||
|
DeviceUpkeepDetailEntity getOne(Long taskId, String deviceCode);
|
||
|
|
||
|
|
||
|
void finishItem(Long taskId, String deviceCode, String deptCode, Boolean normalFlag, AuthAdmin user);
|
||
|
}
|