📄 answer.java
字号:
package com.jlobo.web.beans;
// default package
/**
* Answer generated by MyEclipse Persistence Tools
*/
public class Answer implements java.io.Serializable {
// Fields
private Long id;
private Question question;
private String code;
private String content;
private String describe;
private String remark;
private Long sort;
private Boolean status;
// Constructors
/** default constructor */
public Answer() {
}
/** full constructor */
public Answer(Question question, String code, String content, String describe, String remark, Long sort, Boolean status) {
this.question = question;
this.code = code;
this.content = content;
this.describe = describe;
this.remark = remark;
this.sort = sort;
this.status = status;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Question getQuestion() {
return this.question;
}
public void setQuestion(Question question) {
this.question = question;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getDescribe() {
return this.describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getSort() {
return this.sort;
}
public void setSort(Long sort) {
this.sort = sort;
}
public Boolean getStatus() {
return this.status;
}
public void setStatus(Boolean status) {
this.status = status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -