mac
2024-01-02 d1ebb94e1a17b7c25d4fcf73d85345d92cc86b5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.hdl.linkpm.sdk.template.callback;/*
 *create by wxr
 *date 2022/1/19
 */
 
import com.hdl.linkpm.sdk.core.callback.IBaseCallBack;
import com.hdl.linkpm.sdk.template.bean.TemplateFunctionBean;
 
import java.util.List;
 
public interface ITemplateFunctionsCallBack extends IBaseCallBack {
    /**
     * 成功回调
     */
    void onSuccess(List<TemplateFunctionBean> templateFunctionBean);
}