|
@@ -1,5 +1,6 @@
|
|
|
package com.gree.mall.manager.bean.material.stock;
|
|
|
|
|
|
+import com.gree.mall.manager.annotation.ZfireField;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.experimental.Accessors;
|
|
@@ -10,15 +11,21 @@ import java.math.BigDecimal;
|
|
|
@Accessors(chain = true)
|
|
|
public class WebsitSalesGoodsVO {
|
|
|
|
|
|
+ @ZfireField(hide = true)
|
|
|
+ @ApiModelProperty(value = "商品编号")
|
|
|
+ private String id;
|
|
|
+
|
|
|
@ApiModelProperty(value = "商品编号")
|
|
|
private String goodsId;
|
|
|
|
|
|
@ApiModelProperty(value = "商品名称")
|
|
|
private String goodsName;
|
|
|
|
|
|
+ @ZfireField(hide = true)
|
|
|
@ApiModelProperty(value = "配件编号")
|
|
|
private String partsNumber;
|
|
|
|
|
|
+ @ZfireField(hide = true)
|
|
|
@ApiModelProperty(value = "配件名称")
|
|
|
private String partsName;
|
|
|
|