1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.whyc.pojo.db_param;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
| import lombok.ToString;
|
| import java.util.Date;
|
| /**
| * 页面参数
| */
| @ApiModel(value="页面参数")
| @TableName(schema = "db_param",value = "tb_page_param")
| @Data
| @ToString
| public class PageParam {
|
| private Integer id;
| private String name;
| private Integer value;
|
| private Integer categoryId;
|
| private Date createTime;
| private Date updateTime;
|
| }
|
|