package com.ishop.model.vo; import java.math.BigDecimal; /** * 商户商品列表。 * @date 2023-06-15 * 暂时没用到,直接使用实体对象了。 */ @Deprecated public class MerchantProductVo { public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getImage() { return image; } public void setImage(String image) { this.image = image; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getKeyword() { return keyword; } public void setKeyword(String keyword) { this.keyword = keyword; } public String getCateId() { return cateId; } public void setCateId(String cateId) { this.cateId = cateId; } public Integer getCategoryId() { return categoryId; } public void setCategoryId(Integer categoryId) { this.categoryId = categoryId; } public BigDecimal getPrice() { return price; } public void setPrice(BigDecimal price) { this.price = price; } public Integer getSort() { return sort; } public void setSort(Integer sort) { this.sort = sort; } public Integer getSales() { return sales; } public void setSales(Integer sales) { this.sales = sales; } public Integer getStock() { return stock; } public void setStock(Integer stock) { this.stock = stock; } public Boolean getIsShow() { return isShow; } public void setIsShow(Boolean show) { isShow = show; } public Integer getAuditStatus() { return auditStatus; } public void setAuditStatus(Integer auditStatus) { this.auditStatus = auditStatus; } public Boolean getIsAudit() { return isAudit; } public void setIsAudit(Boolean audit) { isAudit = audit; } public Integer getFicti() { return ficti; } public void setFicti(Integer ficti) { this.ficti = ficti; } public Integer getCollectCount() { return collectCount; } public void setCollectCount(Integer collectCount) { this.collectCount = collectCount; } public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } // @ApiModelProperty(value = "商品id") private Long id; // @ApiModelProperty(value = "商品图片") private String image; // @ApiModelProperty(value = "商品名称") private String name; // @ApiModelProperty(value = "关键字") private String keyword; // @ApiModelProperty(value = "分类ids") private String cateId; // @ApiModelProperty(value = "平台分类id") private Integer categoryId; // @ApiModelProperty(value = "商品价格") private BigDecimal price; // @ApiModelProperty(value = "排序") private Integer sort; // @ApiModelProperty(value = "销量") private Integer sales; // @ApiModelProperty(value = "库存") private Integer stock; // @ApiModelProperty(value = "状态(0:未上架,1:上架)") private Boolean isShow; // @ApiModelProperty(value = "审核状态:0-无需审核 1-待审核,2-审核成功,3-审核拒绝") private Integer auditStatus; // @ApiModelProperty(value = "是否加入审核,0-正常,1-审核流程中") private Boolean isAudit; // @ApiModelProperty(value = "虚拟销量") private Integer ficti; // @ApiModelProperty(value = "收藏数量") private Integer collectCount; // @ApiModelProperty(value = "拒绝原因") private String reason; }