parent
bcc5a549d5
commit
bd126b99bb
@ -0,0 +1,54 @@
|
||||
package com.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class PostCheck {
|
||||
private int dyid;
|
||||
private String uid;
|
||||
private String uname;
|
||||
private String content;
|
||||
private Date rtime;
|
||||
public PostCheck() {}
|
||||
public PostCheck(int dyid,String uid,String uname,Date rtime,String content) {
|
||||
this.dyid=dyid;
|
||||
this.uid=uid;
|
||||
this.uname=uname;
|
||||
this.content=content;
|
||||
this.rtime=rtime;
|
||||
}
|
||||
|
||||
public int getDyid() {
|
||||
return dyid;
|
||||
}
|
||||
public void setDyid(int dyid) {
|
||||
this.dyid=dyid;
|
||||
}
|
||||
|
||||
public String getUid() {
|
||||
return uid;
|
||||
}
|
||||
public void setUid(String uid) {
|
||||
this.uid=uid;
|
||||
}
|
||||
|
||||
public String getUname() {
|
||||
return uname;
|
||||
}
|
||||
public void setUname(String uname) {
|
||||
this.uname=uname;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
public void setContent(String content) {
|
||||
this.content=content;
|
||||
}
|
||||
|
||||
public Date getRtime() {
|
||||
return rtime;
|
||||
}
|
||||
public void setRtime(Date rtime) {
|
||||
this.rtime=rtime;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue