|
|
@@ -0,0 +1,119 @@
|
|
|
+package org.springblade.salesPart.vo;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Rain
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class ResourceWarehouseVo {
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品id
|
|
|
+ */
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 租户
|
|
|
+ */
|
|
|
+ private String tenantId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品编码
|
|
|
+ */
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品名
|
|
|
+ */
|
|
|
+ private String cname;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌id
|
|
|
+ */
|
|
|
+ private Long brandId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 规格型号
|
|
|
+ */
|
|
|
+ private String specificationAndModel;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 型号
|
|
|
+ */
|
|
|
+ private String brandItem;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 产地
|
|
|
+ */
|
|
|
+ private String placeProduction;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 简称
|
|
|
+ */
|
|
|
+ private String cnameInt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 防爆(0否,1是)
|
|
|
+ */
|
|
|
+ private String explosionProof;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 原厂
|
|
|
+ */
|
|
|
+ private String originalFactory;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 自修补
|
|
|
+ */
|
|
|
+ private String selfRecovery;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 品牌名称
|
|
|
+ */
|
|
|
+ private String brandName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 库存
|
|
|
+ */
|
|
|
+ private BigDecimal inventory;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 售价1
|
|
|
+ */
|
|
|
+ private BigDecimal priceOne;
|
|
|
+ /**
|
|
|
+ * 售价2
|
|
|
+ */
|
|
|
+ private BigDecimal priceTwo;
|
|
|
+ /**
|
|
|
+ * 售价3
|
|
|
+ */
|
|
|
+ private BigDecimal priceThree;
|
|
|
+ /**
|
|
|
+ * 售价4
|
|
|
+ */
|
|
|
+ private BigDecimal priceFour;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建议零售价
|
|
|
+ */
|
|
|
+ private BigDecimal suggestedRetailPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * app用于显示价格字段
|
|
|
+ */
|
|
|
+ private BigDecimal mallPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 图片地址
|
|
|
+ */
|
|
|
+ private String url;
|
|
|
+
|
|
|
+}
|