lyh
3 天以前 3ce27b7faf8850d101a1511a685250fe562dca18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.lxzn.api.nc;
 
import com.lxzn.framework.domain.nc.DeviceInfo;
import com.lxzn.framework.model.response.QueryListResponseResult;
import com.lxzn.framework.model.response.ResponseResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
 
@Api(value = "文档对象关系", description = "描述文档和设备树/产品树的关系")
public interface DocRelativeControllerApi {
    @ApiOperation("设备树文档删除接口")
    ResponseResult deleteDocByDeviceId(String docId, String deviceId);
 
    @ApiOperation("产品树 nc 获取文档关联的设备数据")
    QueryListResponseResult<DeviceInfo> findDeviceByDocId(String docId);
}