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.
17 lines
412 B
17 lines
412 B
package ${basePackage}.module.${moduleName}.req;
|
|
|
|
import ${basePackage}.frame.base.BaseSearchRequest;
|
|
<#if table.has('Date')>
|
|
import java.util.Date;
|
|
</#if>
|
|
|
|
/**
|
|
* ${table.getCName()}Request - ${table.tableComment?default("")}模糊搜索
|
|
*
|
|
* @author ${author?default("")}
|
|
* @version 0.0.1
|
|
* @since ${.now?string["yyyy-MM-dd"]}
|
|
*/
|
|
public class ${table.getCName()}SearchRequest extends BaseSearchRequest {
|
|
}
|