wjc
2023-07-07 22494af577e21a930abef309f2f60c03c9615bd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.hdl.linkpm.sdk.template.callback;/*
 *create by wxr
 *date 2022/2/11
 */
 
import com.hdl.linkpm.sdk.core.callback.IBaseCallBack;
import com.hdl.linkpm.sdk.template.bean.CloudTemplateDevice;
import com.hdl.linkpm.sdk.template.bean.TemplateGatewayBean;
 
import java.util.List;
 
public interface IGetTemplateGatewayListCallBack extends IBaseCallBack {
    /**
     * 成功回调
     */
    void onSuccess(List<TemplateGatewayBean> data);
}