From 636b46b0da8220ff4560ca5328509f4c701462c9 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 19 五月 2022 15:36:51 +0800
Subject: [PATCH] 优化 微信支付bug
---
java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java | 72 ++++++++++++++++++++++++++++++++++++
1 files changed, 72 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java b/java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java
index ab25f22..1ea18f3 100755
--- a/java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java
@@ -41,10 +41,18 @@
private String rsId;
private String supplierName;
private String rstName;
+ private String parentRstName;
private String specName;
private String rstId;
+ private String parentRstId;
private String rssId;
private String storeId;
+ private String shId;
+ private String shName;
+ private String unitCodeName;
+ private String miniUnitCodeName;
+ private String isFixed;
+ private String isFixedName;
public String getApplyOrderId() {
return applyOrderId;
@@ -301,4 +309,68 @@
public void setStoreId(String storeId) {
this.storeId = storeId;
}
+
+ public String getShId() {
+ return shId;
+ }
+
+ public void setShId(String shId) {
+ this.shId = shId;
+ }
+
+ 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 getParentRstId() {
+ return parentRstId;
+ }
+
+ public void setParentRstId(String parentRstId) {
+ this.parentRstId = parentRstId;
+ }
+
+ 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;
+ }
}
--
Gitblit v1.8.0