edit
This commit is contained in:
@@ -6,60 +6,21 @@ import lombok.Data;
|
||||
|
||||
/**
|
||||
* 问题反馈
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
* @author Administrator
|
||||
*/
|
||||
@Data
|
||||
public class Bug {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
private Integer id;
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
private String product;
|
||||
|
||||
public String getProduct() {
|
||||
return product;
|
||||
}
|
||||
private String bugRemark;
|
||||
|
||||
public void setProduct(String product) {
|
||||
this.product = product;
|
||||
}
|
||||
private String createBy;
|
||||
|
||||
public String getBugRemark() {
|
||||
return bugRemark;
|
||||
}
|
||||
private Date createDate;
|
||||
|
||||
public void setBugRemark(String bugRemark) {
|
||||
this.bugRemark = bugRemark;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String product;
|
||||
|
||||
private String bugRemark;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
private String answer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user