1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| 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;
| }
|
| }
|
|