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.

76 lines
1.8 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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();
}
}