package com.guiying.common.http; /** *

数据回调接口

* * @author 张华洋 2017/3/22 13:36 * @version V1.2.0 * @name InfoCallback */ public interface InfoCallback { void onSuccess(T info); void onError(int code, String message); }