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.

43 lines
1.0 KiB
Java

1 year ago
package com.sztzjy.linkCommerce.entity;
import io.swagger.annotations.ApiModelProperty;
/**
*
*
* @author whb
* jzhyfx_answer
*/
public class JzhyfxAnswer {
@ApiModelProperty(notes = "主键格式JZHYFXA_时间戳_哈希值JZHYFXA_2023110614_9d7b6c5e")
private String id;
@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 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();
}
}