Helius
2021-12-29 1975ada3e42a06d4e3ff1cc36b3613020208ce1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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 + '\'' +
                '}';
    }
}