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
308 B
23 lines
308 B
5 years ago
|
package ${domain}.frame.base;
|
||
|
|
||
|
/**
|
||
|
* ApiRequest - 基类
|
||
|
*
|
||
|
* @author wangbing
|
||
|
* @version 0.0.1
|
||
|
* @since 2017-01-01
|
||
|
*/
|
||
|
public class BaseRequest<T extends BaseResponse> {
|
||
|
|
||
|
void check() {
|
||
|
|
||
|
}
|
||
|
|
||
|
String path() {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
Class<T> responseClass() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|