package com.beans;
import java.util.HashSet;
import java.util.Set;
/**
* category entity. @author MyEclipse Persistence Tools
*/
public class category implements java.io.Serializable {
// Fields
private Integer categoryId;
private String categoryName;
private Set blogs = new HashSet(0);
// Constructors
/** default constructor */
public category() {
}
/** minimal constructor */
public category(String categoryName) {
this.categoryName = categoryName;
}
/** full constructor */
public category(String categoryName, Set blogs) {
this.categoryName = categoryName;
this.blogs = blogs;
}
// Property accessors
public Integer getCategoryId() {
return this.categoryId;
}
public void setCategoryId(Integer categoryId) {
this.categoryId = categoryId;
}
public String getCategoryName() {
return this.categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public Set getBlogs() {
return this.blogs;
}
public void setBlogs(Set blogs) {
this.blogs = blogs;
}
}
最近下载更多
陈小灏 LV18
2024年6月26日
gxlgxl LV4
2022年5月25日
wangzile1994 LV12
2022年4月16日
石狮31 LV1
2022年4月7日
caijiebiao LV1
2022年2月17日
Sacajawea- LV1
2021年12月15日
yexiansheng LV1
2021年11月6日
ssssss001 LV1
2021年6月24日
lingdulangman LV1
2021年2月3日
Possess LV4
2021年1月19日

最近浏览