21 lines
442 B
Plaintext
21 lines
442 B
Plaintext
package ${package.Parent}.model.query;
|
|
|
|
import com.idata.demo.common.base.BasePageQuery;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* $!{table.comment}分页查询对象
|
|
*
|
|
* @author ${author}
|
|
* @since ${date}
|
|
*/
|
|
@Schema(description ="$!{table.comment}分页查询对象")
|
|
@Data
|
|
public class ${entity}PageQuery extends BasePageQuery {
|
|
|
|
@Schema(description="关键字")
|
|
private String keywords;
|
|
|
|
}
|