陈奇
2018-12-07 4203968ed148a7e56ab460c8d6edb744cb1645e4
1
2
3
4
5
6
7
8
9
package com.moral.yunfushao.httputils;
 
public interface HttpCallBack {
    void onSuccess(String res, String msg);
 
    void showLoadingDialog();
 
    void onFail(int errno,String s);
}