com.gitee.easyopen.DataDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen-mini Show documentation
Show all versions of easyopen-mini Show documentation
easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen
package com.gitee.easyopen;
/**
* 解码data部分参数。如果想要在执行方法前改变业务参数,使用此功能。
* @author tanghc
*/
public interface DataDecoder {
/**
* 解码data部分参数
* @param param api参数
* @return 返回解码后的
* @throws Exception
*/
String decode(ApiParam param) throws Exception;
}