You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.9 KiB
Java

package com.sztzjy.linkCommerce.entity;
import java.util.Date;
import io.swagger.annotations.ApiModelProperty;
/**
*
* @author whb
* algorithm_stu_answer
*/
public class AlgorithmStuAnswer {
@ApiModelProperty(notes = "id")
private String id;
@ApiModelProperty(notes = "模块名如:(用户数据分析-描述性统计)")
private String module;
@ApiModelProperty(notes = "错误次数")
private Integer errorCount;
@ApiModelProperty(notes = "用户ID")
private String userId;
@ApiModelProperty(notes = "创建时间")
private Date createTime;
@ApiModelProperty(notes = "大模块")
private String project;
@ApiModelProperty(notes = "内容")
private String context;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getModule() {
return module;
}
public void setModule(String module) {
this.module = module == null ? null : module.trim();
}
public Integer getErrorCount() {
return errorCount;
}
public void setErrorCount(Integer errorCount) {
this.errorCount = errorCount;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId == null ? null : userId.trim();
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getProject() {
return project;
}
public void setProject(String project) {
this.project = project == null ? null : project.trim();
}
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context == null ? null : context.trim();
}
}