|
|
package com.sztzjy.linkCommerce.entity;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
/**
|
|
|
* 学生行业需求分析答案表
|
|
|
*
|
|
|
* @author whb
|
|
|
* hyxqfx_stu_answer
|
|
|
*/
|
|
|
public class HyxqfxStuAnswer {
|
|
|
@ApiModelProperty(notes = "主键(格式:HYXQFXSA_时间戳_哈希值,例:HYXQFXSA_2023110614_9d7b6c5e)")
|
|
|
private String id;
|
|
|
|
|
|
@ApiModelProperty(notes = "数据维度(可选值:年度蛋糕指数/月度蛋糕指数)")
|
|
|
private String module;
|
|
|
|
|
|
@ApiModelProperty(notes = "时间标识(年度存YYYY,月度存YYYY-MM)")
|
|
|
private String time;
|
|
|
|
|
|
@ApiModelProperty(notes = "用户ID(关联userinfo表)")
|
|
|
private String userId;
|
|
|
|
|
|
@ApiModelProperty(notes = "错误次数")
|
|
|
private Integer errorNumber;
|
|
|
|
|
|
@ApiModelProperty(notes = "学生答案内容(富文本格式)")
|
|
|
private String answer;
|
|
|
|
|
|
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 String getTime() {
|
|
|
return time;
|
|
|
}
|
|
|
|
|
|
public void setTime(String time) {
|
|
|
this.time = time == null ? null : time.trim();
|
|
|
}
|
|
|
|
|
|
public String getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
|
|
|
|
public void setUserId(String userId) {
|
|
|
this.userId = userId == null ? null : userId.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getErrorNumber() {
|
|
|
return errorNumber;
|
|
|
}
|
|
|
|
|
|
public void setErrorNumber(Integer errorNumber) {
|
|
|
this.errorNumber = errorNumber;
|
|
|
}
|
|
|
|
|
|
public String getAnswer() {
|
|
|
return answer;
|
|
|
}
|
|
|
|
|
|
public void setAnswer(String answer) {
|
|
|
this.answer = answer == null ? null : answer.trim();
|
|
|
}
|
|
|
} |