com.gitee.easyopen.ParamNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen Show documentation
Show all versions of easyopen Show documentation
一个简单易用的接口开放平台,平台封装了常用的参数校验、结果返回等功能,开发者只需实现业务代码即可。https://gitee.com/durcframework/easyopen
package com.gitee.easyopen;
/**
* 请求参数名定义
*
* @author tanghc
*/
public class ParamNames {
public static volatile String API_NAME = "name";
public static volatile String VERSION_NAME = "version";
public static volatile String APP_KEY_NAME = "app_key";
public static volatile String DATA_NAME = "data";
public static volatile String TIMESTAMP_NAME = "timestamp";
public static volatile String SIGN_NAME = "sign";
public static volatile String FORMAT_NAME = "format";
public static volatile String TIMESTAMP_PATTERN = "yyyy-MM-dd HH:mm:ss";
public static volatile String ACCESS_TOKEN_NAME = "access_token";
public static volatile String SIGN_METHOD_NAME = "sign_method";
}