From 110d6060625a25f2546c4de3b3a57117d9cf769a Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 24 一月 2023 11:46:32 +0800
Subject: [PATCH] 门禁白名单同步
---
java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 117 insertions(+), 1 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java b/java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java
index f4b54b0..6f9cd59 100755
--- a/java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java
+++ b/java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java
@@ -7,6 +7,7 @@
private String id;
private String applyOrderId;
private String resId;
+ private String rsId;
private String quantity;
private String remark;
private String resName;
@@ -21,7 +22,18 @@
private String purchaseQuantity;
private String purchaseRemark;
private String purchasePrice;
-
+ private String rstName;
+ private String parentRstName;
+ private String specName;
+ private String standardPrice;
+ private String originalStock;
+ private String supplierName;
+ private String shName;
+ private String shId;
+ private String unitCodeName;
+ private String miniUnitCodeName;
+ private String isFixed;
+ private String isFixedName;
public String getApplyOrderId() {
return applyOrderId;
@@ -158,6 +170,110 @@
public void setPurchasePrice(String purchasePrice) {
this.purchasePrice = purchasePrice;
}
+
+ public String getRsId() {
+ return rsId;
+ }
+
+ public void setRsId(String rsId) {
+ this.rsId = rsId;
+ }
+
+ public String getRstName() {
+ return rstName;
+ }
+
+ public void setRstName(String rstName) {
+ this.rstName = rstName;
+ }
+
+ public String getSpecName() {
+ return specName;
+ }
+
+ public void setSpecName(String specName) {
+ this.specName = specName;
+ }
+
+ public String getStandardPrice() {
+ return standardPrice;
+ }
+
+ public void setStandardPrice(String standardPrice) {
+ this.standardPrice = standardPrice;
+ }
+
+ public String getOriginalStock() {
+ return originalStock;
+ }
+
+ public void setOriginalStock(String originalStock) {
+ this.originalStock = originalStock;
+ }
+
+ public String getSupplierName() {
+ return supplierName;
+ }
+
+ public void setSupplierName(String supplierName) {
+ this.supplierName = supplierName;
+ }
+
+ public String getShName() {
+ return shName;
+ }
+
+ public void setShName(String shName) {
+ this.shName = shName;
+ }
+
+ public String getUnitCodeName() {
+ return unitCodeName;
+ }
+
+ public void setUnitCodeName(String unitCodeName) {
+ this.unitCodeName = unitCodeName;
+ }
+
+ public String getMiniUnitCodeName() {
+ return miniUnitCodeName;
+ }
+
+ public void setMiniUnitCodeName(String miniUnitCodeName) {
+ this.miniUnitCodeName = miniUnitCodeName;
+ }
+
+ public String getParentRstName() {
+ return parentRstName;
+ }
+
+ public void setParentRstName(String parentRstName) {
+ this.parentRstName = parentRstName;
+ }
+
+ public String getIsFixed() {
+ return isFixed;
+ }
+
+ public void setIsFixed(String isFixed) {
+ this.isFixed = isFixed;
+ }
+
+ public String getIsFixedName() {
+ return isFixedName;
+ }
+
+ public void setIsFixedName(String isFixedName) {
+ this.isFixedName = isFixedName;
+ }
+
+ public String getShId() {
+ return shId;
+ }
+
+ public void setShId(String shId) {
+ this.shId = shId;
+ }
}
--
Gitblit v1.8.0