From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: 星期一, 19 六月 2023 14:44:19 +0800
Subject: [PATCH] 删除

---
 src/main/java/com/gk/firework/Domain/Vo/Product2JsonVo.java |  171 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 171 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/gk/firework/Domain/Vo/Product2JsonVo.java b/src/main/java/com/gk/firework/Domain/Vo/Product2JsonVo.java
new file mode 100644
index 0000000..737f671
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/Vo/Product2JsonVo.java
@@ -0,0 +1,171 @@
+package com.gk.firework.Domain.Vo;
+
+import com.gk.firework.Domain.ProductInfo;
+
+import java.math.BigDecimal;
+
+public class Product2JsonVo  {
+
+    private Long id;
+    //产品数量
+    private Integer num;
+    //
+    /** 产品名(限制长度255)  name **/
+    private String name;
+
+    /** 流向码(十位)  directionCode **/
+    private String directionCode;
+
+//    /** 进价  purchasePrice **/
+//    private BigDecimal purchasePrice;
+//
+//    /** 售价  salePrice **/
+//    private BigDecimal salePrice;
+
+    /** 生产厂家  manufacturer **/
+    private String manufacturer;
+
+    /** 规格(一般为2位字母数字组合)  specification **/
+    private String specification;
+
+    /** 含药量(一般为数字,部分含有单位)  explosiveContent **/
+    private BigDecimal explosiveContent;
+
+    /** (烟花爆竹)类型(爆竹类,单个爆竹类,喷花类,日景烟花,吐珠类,造型玩具类,玩具烟花类,线香类,组合类,组合烟花,组合烟花类,组合盆花类,鞭炮类,火箭类,旋转类,升空类,旋转升空类,冷光类,烟雾类,摩擦类,小礼花类,礼花弹类,架子烟类,引火线,黑火药,烟火药,氯酸钾,精品礼品箱类,彩箱烟花类,单个爆竹类,玩具类,同类组合烟花)  type **/
+    private String type;
+
+    private String secondaryType;
+
+    /** 产品等级(ABCD级)  level **/
+    private String level;
+
+    /** 箱含量(正整数)  boxNumber **/
+    private Integer boxNumber;
+
+    /** 包装方式  packing **/
+    private String packing;
+
+    //进价
+    private BigDecimal price;
+
+
+    public Integer getNum() {
+        return num;
+    }
+
+    public void setNum(Integer num) {
+        this.num = num;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getDirectionCode() {
+        return directionCode;
+    }
+
+    public void setDirectionCode(String directionCode) {
+        this.directionCode = directionCode;
+    }
+
+//    public BigDecimal getPurchasePrice() {
+//        return purchasePrice;
+//    }
+//
+//    public void setPurchasePrice(BigDecimal purchasePrice) {
+//        this.purchasePrice = purchasePrice;
+//    }
+//
+//    public BigDecimal getSalePrice() {
+//        return salePrice;
+//    }
+//
+//    public void setSalePrice(BigDecimal salePrice) {
+//        this.salePrice = salePrice;
+//    }
+
+    public String getManufacturer() {
+        return manufacturer;
+    }
+
+    public void setManufacturer(String manufacturer) {
+        this.manufacturer = manufacturer;
+    }
+
+    public String getSpecification() {
+        return specification;
+    }
+
+    public void setSpecification(String specification) {
+        this.specification = specification;
+    }
+
+    public BigDecimal getExplosiveContent() {
+        return explosiveContent;
+    }
+
+    public void setExplosiveContent(BigDecimal explosiveContent) {
+        this.explosiveContent = explosiveContent;
+    }
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getSecondaryType() {
+        return secondaryType;
+    }
+
+    public void setSecondaryType(String secondaryType) {
+        this.secondaryType = secondaryType;
+    }
+
+    public String getLevel() {
+        return level;
+    }
+
+    public void setLevel(String level) {
+        this.level = level;
+    }
+
+    public Integer getBoxNumber() {
+        return boxNumber;
+    }
+
+    public void setBoxNumber(Integer boxNumber) {
+        this.boxNumber = boxNumber;
+    }
+
+    public String getPacking() {
+        return packing;
+    }
+
+    public void setPacking(String packing) {
+        this.packing = packing;
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public BigDecimal getPrice() {
+        return price;
+    }
+
+    public void setPrice(BigDecimal price) {
+        this.price = price;
+    }
+}

--
Gitblit v1.9.2