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
29
30
31
32
33
34
| package com.xcong.farmer.cms.core.tag.data;
|
| /**
| * @author wzy
| * @date 2022-07-06
| **/
| public class PageChildData {
|
| /**
| * 页码
| */
| private int index;
|
| /**
| * 链接
| */
| private String path;
|
| public int getIndex() {
| return index;
| }
|
| public void setIndex(int index) {
| this.index = index;
| }
|
| public String getPath() {
| return path;
| }
|
| public void setPath(String path) {
| this.path = path;
| }
| }
|
|