package com.matrix.system.hive.bean; import com.matrix.core.pojo.EntityDTO; import com.matrix.core.anotations.Extend; import com.matrix.system.shopXcx.bean.ShopProduct; import java.util.List; /** * @description 皮肤检测明细 * @author * @date 2020-05-17 16:00 */ public class SysSkinDetail extends EntityDTO{ @Extend private static final long serialVersionUID = 1L; /** * 主键 */ private Integer id; /** * 检测id */ private Long checkId; /** * 症状 */ private String symptom; /** * 问题占比 */ private Double percentage; /** * 问题分析 */ private String analysis; /** * 解决方案 */ private String solution; /** * 推荐使用产品 */ private String productIds; /** * 检测图片 */ private String img; /** * 扩展字段1 */ private String t1; /** * 扩展字段2 */ private String t2; /** * 扩展字段3 */ private String t3; /** * 扩展字段4 */ private String t4; /** * 关联扩展的产品信息 */ @Extend private List shopProducts; public List getShopProducts() { return shopProducts; } public void setShopProducts(List shopProducts) { this.shopProducts = shopProducts; } public Integer getId() { return id; } public SysSkinDetail setId(Integer id) { this.id=id; return this; } public Long getCheckId() { return checkId; } public SysSkinDetail setCheckId(Long checkId) { this.checkId=checkId; return this; } public String getSymptom() { return symptom; } public SysSkinDetail setSymptom(String symptom) { this.symptom=symptom; return this; } public Double getPercentage() { return percentage; } public SysSkinDetail setPercentage(Double percentage) { this.percentage=percentage; return this; } public String getAnalysis() { return analysis; } public SysSkinDetail setAnalysis(String analysis) { this.analysis=analysis; return this; } public String getSolution() { return solution; } public SysSkinDetail setSolution(String solution) { this.solution=solution; return this; } public String getProductIds() { return productIds; } public SysSkinDetail setProductIds(String productIds) { this.productIds=productIds; return this; } public String getImg() { return img; } public SysSkinDetail setImg(String img) { this.img=img; return this; } public String getT1() { return t1; } public SysSkinDetail setT1(String t1) { this.t1=t1; return this; } public String getT2() { return t2; } public SysSkinDetail setT2(String t2) { this.t2=t2; return this; } public String getT3() { return t3; } public SysSkinDetail setT3(String t3) { this.t3=t3; return this; } public String getT4() { return t4; } public SysSkinDetail setT4(String t4) { this.t4=t4; return this; } }