package com.matrix.system.shopXcx.dto; /** * @author jyy */ public class ProductAttrInfoDTO { /** * 产品ID */ private Integer pId; /** * 产品是否特价 */ private Integer isSpecialPrice; /** * 属性ids */ private String attrStr; public Integer getpId() { return pId; } public void setpId(Integer pId) { this.pId = pId; } public Integer getIsSpecialPrice() { return isSpecialPrice; } public void setIsSpecialPrice(Integer isSpecialPrice) { this.isSpecialPrice = isSpecialPrice; } public String getAttrStr() { return attrStr; } public void setAttrStr(String attrStr) { this.attrStr = attrStr; } @Override public String toString() { return "ProductAttrInfoDTO{" + "pId=" + pId + ", attrStr='" + attrStr + '\'' + '}'; } }