shichongfu
2023-10-08 6f83c8971714e2384df45706e364ed45a0cd1183
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
    
    
 
}