|  |  |  | 
|---|
|  |  |  | package com.matrix.system.app.vo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.matrix.system.hive.bean.ShoppingGoods; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "商品图片") | 
|---|
|  |  |  | private String img; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "商品类型") | 
|---|
|  |  |  | private String goodsType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getGoodsType() { | 
|---|
|  |  |  | return goodsType; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setGoodsType(String goodsType) { | 
|---|
|  |  |  | this.goodsType = goodsType; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Long getId() { | 
|---|
|  |  |  | return id; | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setIsPresent(String isPresent) { | 
|---|
|  |  |  | this.isPresent = isPresent; | 
|---|
|  |  |  | if ("是".equals(isPresent)) { | 
|---|
|  |  |  | this.isPresent = "1"; | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | this.isPresent = "0"; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getUnit() { | 
|---|