package org.jeecg.modules.eam.service;
|
|
import org.jeecg.modules.eam.entity.EamTechnicalStatusChangeDetail;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* @Description: 技术状态变更申请明细
|
* @Author: jeecg-boot
|
* @Date: 2025-07-09
|
* @Version: V1.0
|
*/
|
public interface IEamTechnicalStatusChangeDetailService extends IService<EamTechnicalStatusChangeDetail> {
|
|
/**
|
* 查询设备明细
|
* @param orderId
|
* @return
|
*/
|
List<EamTechnicalStatusChangeDetail> queryList(String orderId);
|
|
/**
|
* 删除变更单下的设备明细
|
* @param changeId
|
*/
|
void removeByChangeId(String changeId);
|
}
|