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.

65 lines
1.5 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_answer
*/
public class HyxqfxAnswer {
@ApiModelProperty(notes = "主键格式HYXQFXA_时间戳_哈希值HYXQFXA_2023110614_9d7b6c5e")
private String id;
@ApiModelProperty(notes = "数据维度(可选值:年度蛋糕指数/月度蛋糕指数)")
private String module;
@ApiModelProperty(notes = "时间标识年度存YYYY月度存YYYY-MM")
private String time;
@ApiModelProperty(notes = "用户ID")
private String userId;
@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 String getAnswer() {
return answer;
}
public void setAnswer(String answer) {
this.answer = answer == null ? null : answer.trim();
}
}