package com.tejia.lijin.app.contract;
|
|
import com.tejia.lijin.app.entity.HotSearch;
|
|
import org.json.JSONObject;
|
|
import java.util.ArrayList;
|
|
/**
|
* 京东activity专题
|
*/
|
public class VipShopSpecialContract {
|
/**
|
* activity 要实现的方法
|
*/
|
public interface VipShopSpecialView {
|
void onSearchSuccess(ArrayList<HotSearch> list, JSONObject obj);//成功
|
|
void onSearchFail(String errorInfo);//失败
|
}
|
|
|
/**
|
* 搜索回调接口
|
*/
|
public interface VipShopSpecialCallBack {
|
void onSuccess(ArrayList<HotSearch> list, JSONObject obj);
|
|
void onFail(String errorInfo);
|
}
|
}
|