package com.xzx.gc.model.query; import com.xzx.gc.annotation.Query; /** *CmsBlog查询 */ public class CmsBlogQuery extends PageParam { @Query(name = "id", display = true) private Integer id; public Integer getId(){ return id; } public void setId(Integer id ){ this.id = id; } }