SocialNetworks/demo/target/test-classes/templates/pageQuery.java.vm

21 lines
442 B
Plaintext
Raw Normal View History

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;
}