首页>代码>IntelliJ IDEA下SpringBoot+Maven+Spring Data JPA+Layui整合实现增删改查及分页的单表项目实例>/studyLayui/src/main/java/cn/temptation/domain/Category.java
package cn.temptation.domain;
import javax.persistence.*;
@Entity
@Table(name = "category")
public class Category {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "categoryid")
private Integer categoryid;
@Column(name = "categoryname")
private String categoryname;
public Category() {
}
public Category(String categoryname) {
this.categoryname = categoryname;
}
public Integer getCategoryid() {
return categoryid;
}
public void setCategoryid(Integer categoryid) {
this.categoryid = categoryid;
}
public String getCategoryname() {
return categoryname;
}
public void setCategoryname(String categoryname) {
this.categoryname = categoryname;
}
}
最近下载更多
dane168 LV10
8月5日
oldfox LV19
2024年10月22日
微信网友_7134912998903808 LV15
2024年9月11日
ma406805131 LV19
2024年6月18日
wwwww816 LV5
2024年5月22日
oulingqiao LV13
2023年12月12日
interface LV22
2023年5月11日
hbsoft2008 LV16
2023年3月20日
lyws1986 LV17
2023年3月13日
微信网友_6368711690080256 LV3
2023年2月28日
最近浏览更多
奋斗的小蚂蚁 LV17
11月7日
dane168 LV10
8月5日
oldfox LV19
2024年10月22日
微信网友_7134912998903808 LV15
2024年9月11日
可乐要加冰1 LV8
2024年6月20日
17380184110
2024年6月18日
暂无贡献等级
xin xie LV1
2024年6月13日
wwwww816 LV5
2024年5月22日
sumai1
2024年5月12日
暂无贡献等级
ma406805131 LV19
2024年5月11日

