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