parent
f7fd0cb373
commit
1f67c3d08e
@ -0,0 +1,45 @@
|
|||||||
|
package com.example.entity;
|
||||||
|
|
||||||
|
import javax.persistence.*;
|
||||||
|
|
||||||
|
@Table(name = "sub_classify_info")
|
||||||
|
public class SubClassifyInfo {
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Column(name = "name")
|
||||||
|
private String name;
|
||||||
|
@Column(name = "description")
|
||||||
|
private String description;
|
||||||
|
@Column(name = "classifyId")
|
||||||
|
private Long classifyId;
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
public String getDescription() {
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
public void setDescription(String description) {
|
||||||
|
this.description = description;
|
||||||
|
}
|
||||||
|
public Long getClassifyId() {
|
||||||
|
return classifyId;
|
||||||
|
}
|
||||||
|
public void setClassifyId(Long classifyId) {
|
||||||
|
this.classifyId = classifyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
public Long getId() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue