From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:41:54 +0800
Subject: [PATCH] commit
---
src/main/java/com/gk/firework/Domain/Vo/StockVo.java | 264 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 264 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/Vo/StockVo.java b/src/main/java/com/gk/firework/Domain/Vo/StockVo.java
new file mode 100644
index 0000000..989da7b
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/Vo/StockVo.java
@@ -0,0 +1,264 @@
+package com.gk.firework.Domain.Vo;
+
+import com.gk.firework.Domain.StockInfo;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * @author : jingjy
+ * @date : 2021/4/15 17:21
+ */
+public class StockVo extends StockInfo {
+ private String name;
+
+ private Integer explosiveContent;
+
+ private String specification;
+
+ private BigDecimal countNum;
+
+ private BigDecimal stockNum;
+
+ private String enterpriseName;
+
+ private String enterpriseNumber;
+
+ private BigDecimal entryNum;
+
+ private BigDecimal returnNum;
+
+ private BigDecimal saleNum;
+
+ private BigDecimal deliveryNum;
+
+ private BigDecimal returnDeliveryNum;
+
+ private String boxnumber;
+
+ private String manufacturer;
+
+ //企业所在省市区
+ private String province;
+
+ private String city;
+
+ private String district;
+
+ //产品六个类别
+ private BigDecimal firecracker;
+
+ private BigDecimal spray;
+
+ private BigDecimal rotation;
+
+ private BigDecimal bead;
+
+ private BigDecimal toy;
+
+ private BigDecimal combined;
+
+ //产品类别
+ private String productType;
+ private String secondaryType;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Integer getExplosiveContent() {
+ return explosiveContent;
+ }
+
+ public void setExplosiveContent(Integer explosiveContent) {
+ this.explosiveContent = explosiveContent;
+ }
+
+ public String getSpecification() {
+ return specification;
+ }
+
+ public void setSpecification(String specification) {
+ this.specification = specification;
+ }
+
+ public BigDecimal getCountNum() {
+ return countNum;
+ }
+
+ public void setCountNum(BigDecimal countNum) {
+ this.countNum = countNum;
+ }
+
+ public BigDecimal getStockNum() {
+ return stockNum;
+ }
+
+ public void setStockNum(BigDecimal stockNum) {
+ this.stockNum = stockNum;
+ }
+
+ public String getEnterpriseName() {
+ return enterpriseName;
+ }
+
+ public void setEnterpriseName(String enterpriseName) {
+ this.enterpriseName = enterpriseName;
+ }
+
+ public String getEnterpriseNumber() {
+ return enterpriseNumber;
+ }
+
+ public void setEnterpriseNumber(String enterpriseNumber) {
+ this.enterpriseNumber = enterpriseNumber;
+ }
+
+ public BigDecimal getEntryNum() {
+ return entryNum;
+ }
+
+ public void setEntryNum(BigDecimal entryNum) {
+ this.entryNum = entryNum;
+ }
+
+ public BigDecimal getReturnNum() {
+ return returnNum;
+ }
+
+ public void setReturnNum(BigDecimal returnNum) {
+ this.returnNum = returnNum;
+ }
+
+ public BigDecimal getSaleNum() {
+ return saleNum;
+ }
+
+ public void setSaleNum(BigDecimal saleNum) {
+ this.saleNum = saleNum;
+ }
+
+ public BigDecimal getDeliveryNum() {
+ return deliveryNum;
+ }
+
+ public void setDeliveryNum(BigDecimal deliveryNum) {
+ this.deliveryNum = deliveryNum;
+ }
+
+ public BigDecimal getReturnDeliveryNum() {
+ return returnDeliveryNum;
+ }
+
+ public void setReturnDeliveryNum(BigDecimal returnDeliveryNum) {
+ this.returnDeliveryNum = returnDeliveryNum;
+ }
+
+ public String getBoxnumber() {
+ return boxnumber;
+ }
+
+ public void setBoxnumber(String boxnumber) {
+ this.boxnumber = boxnumber;
+ }
+
+ public String getManufacturer() {
+ return manufacturer;
+ }
+
+ public void setManufacturer(String manufacturer) {
+ this.manufacturer = manufacturer;
+ }
+
+ public String getProvince() {
+ return province;
+ }
+
+ public void setProvince(String province) {
+ this.province = province;
+ }
+
+ public String getCity() {
+ return city;
+ }
+
+ public void setCity(String city) {
+ this.city = city;
+ }
+
+ public String getDistrict() {
+ return district;
+ }
+
+ public void setDistrict(String district) {
+ this.district = district;
+ }
+
+ public BigDecimal getFirecracker() {
+ return firecracker;
+ }
+
+ public void setFirecracker(BigDecimal firecracker) {
+ this.firecracker = firecracker;
+ }
+
+ public BigDecimal getSpray() {
+ return spray;
+ }
+
+ public void setSpray(BigDecimal spray) {
+ this.spray = spray;
+ }
+
+ public BigDecimal getRotation() {
+ return rotation;
+ }
+
+ public void setRotation(BigDecimal rotation) {
+ this.rotation = rotation;
+ }
+
+ public BigDecimal getBead() {
+ return bead;
+ }
+
+ public void setBead(BigDecimal bead) {
+ this.bead = bead;
+ }
+
+ public BigDecimal getToy() {
+ return toy;
+ }
+
+ public void setToy(BigDecimal toy) {
+ this.toy = toy;
+ }
+
+ public BigDecimal getCombined() {
+ return combined;
+ }
+
+ public void setCombined(BigDecimal combined) {
+ this.combined = combined;
+ }
+
+ public String getProductType() {
+ return productType;
+ }
+
+ public void setProductType(String productType) {
+ this.productType = productType;
+ }
+
+ public String getSecondaryType() {
+ return secondaryType;
+ }
+
+ public void setSecondaryType(String secondaryType) {
+ this.secondaryType = secondaryType;
+ }
+}
--
Gitblit v1.9.2