|
|
|
|
|
package com.sztzjy.linkCommerce.entity;
|
|
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 采购产品定位标准答案表(品类定位模型)
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author whb
|
|
|
|
|
|
* cgcpdw_answer
|
|
|
|
|
|
*/
|
|
|
|
|
|
public class CgcpdwAnswer {
|
|
|
|
|
|
@ApiModelProperty(notes = "主键(格式:CGCPDWA_时间戳_哈希值,例:CGCPDWA_2023110614_9d7b6c5e)")
|
|
|
|
|
|
private String id;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "品类分类(如:MRO物料、生产性物料)")
|
|
|
|
|
|
private String categoryClassification;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "用户ID(关联userinfo表)")
|
|
|
|
|
|
private String userId;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "典型采购品项(多个品项用逗号分隔)")
|
|
|
|
|
|
private String typicalItems;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "核心特征(JSON格式,")
|
|
|
|
|
|
private String coreFeatures;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "模型定位依据(500字以内分析说明)")
|
|
|
|
|
|
private String positioningBasis;
|
|
|
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
|
|
|
return id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(String id) {
|
|
|
|
|
|
this.id = id == null ? null : id.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getCategoryClassification() {
|
|
|
|
|
|
return categoryClassification;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setCategoryClassification(String categoryClassification) {
|
|
|
|
|
|
this.categoryClassification = categoryClassification == null ? null : categoryClassification.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getUserId() {
|
|
|
|
|
|
return userId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUserId(String userId) {
|
|
|
|
|
|
this.userId = userId == null ? null : userId.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getTypicalItems() {
|
|
|
|
|
|
return typicalItems;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTypicalItems(String typicalItems) {
|
|
|
|
|
|
this.typicalItems = typicalItems == null ? null : typicalItems.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getCoreFeatures() {
|
|
|
|
|
|
return coreFeatures;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setCoreFeatures(String coreFeatures) {
|
|
|
|
|
|
this.coreFeatures = coreFeatures == null ? null : coreFeatures.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getPositioningBasis() {
|
|
|
|
|
|
return positioningBasis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setPositioningBasis(String positioningBasis) {
|
|
|
|
|
|
this.positioningBasis = positioningBasis == null ? null : positioningBasis.trim();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|