parent
a7f2e8231e
commit
77890bb108
@ -0,0 +1,37 @@
|
||||
package org.sang.bean;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
public class Category {
|
||||
private Long id;
|
||||
private String cateName;
|
||||
private Timestamp date;
|
||||
|
||||
public Category() {
|
||||
}
|
||||
|
||||
public Timestamp getDate() {
|
||||
return date;
|
||||
}
|
||||
|
||||
public void setDate(Timestamp date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCateName() {
|
||||
return cateName;
|
||||
}
|
||||
|
||||
public void setCateName(String cateName) {
|
||||
this.cateName = cateName;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue