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
| package com.xcong.farmer.cms.core.tag.model;
|
| /**
| * @author wzy
| * @date 2022-06-23
| **/
| public class Include {
| private String field;
|
| private String repeat = "1";
|
| public String getRepeat() {
| return repeat;
| }
|
| public void setRepeat(String repeat) {
| this.repeat = repeat;
| }
|
| public String getField() {
| return field;
| }
|
| public void setField(String field) {
| this.field = field;
| }
| }
|
|