MHGetApi.java 426 Bytes
package com.hjx.miaohongentry.http;


import com.hjx.miaohongentry.bean.AppVersion;

/**
 * Created by l on 2017/7/1.
 */

public interface MHGetApi {

    /**
     * Get the update informatuon of the vertion
     * <br><br>
     * http://boss.hjx.com/general/release/version
     * @return the update informatuon
     * @throws Exception
     */
    AppVersion getUpdateInfo(String pid, String appName) throws Exception;


}