hxb
2022-12-06 cfc51eebf29f76741d103f3c4d5d138431816540
1
2
3
4
5
6
7
8
9
10
11
package com.example.usermodule.net;
 
public interface IUserDataCallBack {
    void onCallBackOpenId(String str);
    /**
     * 错误回调
     *
     * @param throwable
     */
    void onError(Throwable throwable);
}