You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
973 B
55 lines
973 B
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;
|
|
}
|
|
}
|