package com.xcong.farmer.cms.core.tag.data;
|
|
import java.util.List;
|
|
/**
|
* @author wzy
|
* @date 2022-07-04
|
**/
|
public class NavData {
|
|
private String title;
|
|
private String code;
|
|
private String url;
|
|
private String image;
|
|
private List<NavData> children;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getImage() {
|
return image;
|
}
|
|
public void setImage(String image) {
|
this.image = image;
|
}
|
|
public List<NavData> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<NavData> children) {
|
this.children = children;
|
}
|
}
|