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