首页>代码>SSM(Spring+SpringMVC+Mybatis)开发OA后台管理系统,最全面增删改查样例>/test/src/main/java/com/zl/beans/NewsLabel.java
package com.zl.beans;
import java.util.List;
public class NewsLabel {
private Integer id;
private String label_name;//栏目名称
private String label_content;//栏目描述
//作为一方,查多方
private List<NewsLabel> chileren;
//作为多方
private NewsLabel parent;
public NewsLabel() {
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getLabel_name() {
return label_name;
}
public void setLabel_name(String label_name) {
this.label_name = label_name;
}
public String getLabel_content() {
return label_content;
}
public void setLabel_content(String label_content) {
this.label_content = label_content;
}
public List<NewsLabel> getChileren() {
return chileren;
}
public void setChileren(List<NewsLabel> chileren) {
this.chileren = chileren;
}
public NewsLabel getParent() {
return parent;
}
public void setParent(NewsLabel parent) {
this.parent = parent;
}
@Override
public String toString() {
return "NewsLabel{" +
"id=" + id +
", label_name='" + label_name + '\'' +
", label_content='" + label_content + '\'' +
", chileren=" + chileren +
", parent=" + parent +
'}';
}
}
最近下载更多
哇塞塞哈哈哈 LV8
2023年5月5日
云龙123456 LV7
2022年12月2日
406503223 LV5
2022年7月7日
2039995605 LV9
2022年6月4日
crosa_Don LV18
2022年6月1日
lalala0201 LV1
2022年4月29日
周黑鸭 LV2
2022年3月24日
y1214435276 LV9
2022年3月23日
李佳琪 LV3
2022年1月12日
libin0517 LV3
2021年12月14日

最近浏览