package com.yanzuoguang.wxxcx.base;


/**
 * 将字符串转换为结果
 *
 * @param <T>
 * @author 颜佐光
 */
public interface WxXcxResponseConvert<T> {

    /**
     * 将字符串转换为结果
     *
     * @param response 字符串
     * @return 实体结果
     */
    T getResponse(String response);
}