admin
2021-05-13 4a8f1bec26519a25f073739534e653a4f7c9e11d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.tejia.lijin.app.contract;
 
 
import org.json.JSONObject;
 
 
/**
 * 京东专题 Fragment
 */
public class JdSpecialFgContract {
    /**
     * activity 要实现的方法
     */
    public interface JdSpecialView {
        void onSearchSuccess(JSONObject obj);//成功
 
        void onSearchFail(String errorInfo);//失败
    }
 
 
    /**
     * 搜索回调接口
     */
    public interface JdSpecialFgCallBack {
        void onSuccess(JSONObject obj);
 
        void onFail(String errorInfo);
    }
}