You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
329 B

package ${domain}.frame.base;
/**
* ApiRequest -
*
* @author wangbing
* @version 0.0.1
* @since 2017-01-01
*/
public class BaseRequest<T extends BaseResponse> {
public void check() {
}
public String path() {
return "";
}
public Class<T> responseClass() {
return null;
}
}

Powered by TurnKey Linux.