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; } }