wjc
2023-07-12 823f534dff0da0b34f68e32cdfe2651d1bb81db3
1
2
3
4
5
6
7
8
9
10
11
12
package com.hdl.linkpm.sdk.core.callback;
 
/**
 * Created by jlchen on 12/2/21.
 * 通配回调
 */
public interface IResponseCallBack<T> extends IBaseCallBack {
    /**
     * 成功回调
     */
    void onSuccess(T objects);
}