package com.product.device.service.ide; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * * Copyright LX-BASE * @Title: LX-BASE-SERVICE-IDEL * @Project: IPasswordSecurityService * @Date: 2020-10-10 16:19 * @Author: * @Description: 设备维修 */ public interface IDeviceMainenanceService { /** * 设备故障申报 * @param fse * @return * @throws BaseException */ String saveDeviceFailure(FieldSetEntity fse)throws BaseException; }