package com.yeshi.fanli.entity.system;
|
|
import java.util.Date;
|
|
public class SystemQuestionCenter {
|
|
private long id;
|
|
private long valueId;
|
|
private String question;
|
|
private String answer;
|
|
public String getAnswer() {
|
return answer;
|
}
|
|
public void setAnswer(String answer) {
|
this.answer = answer;
|
}
|
|
private Date createTime;
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public long getValueId() {
|
return valueId;
|
}
|
|
public void setValueId(long valueId) {
|
this.valueId = valueId;
|
}
|
|
public String getQuestion() {
|
return question;
|
}
|
|
public void setQuestion(String question) {
|
this.question = question;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
|
|
}
|