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.

24 lines
375 B

package ${domain}.frame;
/**
* ApiSearchRequest - 基类
*
* @author wangbing
* @version 0.0.1
* @since 2017-01-01
*/
public abstract class ApiSearchRequest {
/**
* 关键字
*/
private String keyword;
public String getKeyword() {
return keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
}
}

Powered by TurnKey Linux.