Helius
2021-01-12 c9b157e19d101fd2d9a79c3db673f0c2cacd481c
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 产品图片表
 * @author jyy
 * @date 2019-06-10 10:58
 */
public class ShopProductImg  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 产品ID
     */
    private Integer  pId;
            
    
    /**
     * 图片路径
     */
    private String  imgPath;
            
    
    /**
     * 是否是主图(1=是,2=否)
     */
    private Integer  isMainImg;
            
    
    /**
     * 排序
     */
    private Integer  sort;
 
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Integer getId() {
        return id;
    }
       
       public void setId(Integer id) {
        this.id=id;
    }
       
 
    public Integer getPId() {
        return pId;
    }
       
       public void setPId(Integer pId) {
        this.pId=pId;
    }
       
 
    public String getImgPath() {
        return imgPath;
    }
       
       public void setImgPath(String imgPath) {
        this.imgPath=imgPath;
    }
       
 
    public Integer getIsMainImg() {
        return isMainImg;
    }
       
       public void setIsMainImg(Integer isMainImg) {
        this.isMainImg=isMainImg;
    }
       
 
    public Integer getSort() {
        return sort;
    }
       
       public void setSort(Integer sort) {
        this.sort=sort;
    }
       
 
 
  
}