From 8067f46ddedde36c4e0f8ab9c7fbbdc29c2b0bad Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 21 二月 2023 11:02:12 +0800
Subject: [PATCH] 优化代码
---
java110-bean/src/main/java/com/java110/dto/purchaseApplyDetail/PurchaseApplyDetailDto.java | 81 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 81 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 20eb32e..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,9 +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;
@@ -292,4 +301,76 @@
public void setCreateUserId(String createUserId) {
this.createUserId = createUserId;
}
+
+ public String getStoreId() {
+ return storeId;
+ }
+
+ 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