| | |
| | | package com.xcong.farmer.cms.core.tag.data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @date 2022-08-30 |
| | | **/ |
| | | public class AdData { |
| | | |
| | | private String id; |
| | | |
| | | private String name; |
| | | |
| | | private String data; |
| | | |
| | | private int index; |
| | | |
| | | private List<String> children; |
| | | |
| | | public String getName() { |
| | | return name; |
| | |
| | | public void setIndex(int index) { |
| | | this.index = index; |
| | | } |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public List<String> getChildren() { |
| | | return children; |
| | | } |
| | | |
| | | public void setChildren(List<String> children) { |
| | | this.children = children; |
| | | } |
| | | } |