java110
2021-04-21 a60623f293560f5c1938084f00a77bf3f8e2abba
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
56
57
58
59
60
61
62
63
64
65
66
67
package com.java110.entity.product;
 
import com.java110.entity.DefaultEntity;
 
import java.util.List;
 
/**
 * 产品实例的公用属性
 *
 *
 * Created by wuxw on 2017/5/20.
 */
public class Product extends DefaultEntity {
 
    private String productId;
 
    private String  productImg;
 
    private String name;
 
    private String catalogCd;
 
    private String productDesc;
 
    private List<ProductAttr> productAttrs;
 
 
    public String getProductId() {
        return productId;
    }
 
    public void setProductId(String productId) {
        this.productId = productId;
    }
 
    public String getProductImg() {
        return productImg;
    }
 
    public void setProductImg(String productImg) {
        this.productImg = productImg;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCatalogCd() {
        return catalogCd;
    }
 
    public void setCatalogCd(String catalogCd) {
        this.catalogCd = catalogCd;
    }
 
    public String getProductDesc() {
        return productDesc;
    }
 
    public void setProductDesc(String productDesc) {
        this.productDesc = productDesc;
    }
}