Przeglądaj źródła

优化PurchaseApplyDetailDto

mrzcc 6 lat temu
rodzic
commit
8f838ec212

+ 9 - 0
java110-bean/src/main/java/com/java110/dto/purchaseApply/PurchaseApplyDetailDto.java

@@ -13,6 +13,7 @@ public class PurchaseApplyDetailDto {
     private String resCode;
     private String price;
     private String stock;
+    private String description;
 
     public String getApplyOrderId() {
         return applyOrderId;
@@ -85,6 +86,14 @@ public class PurchaseApplyDetailDto {
     public void setStock(String stock) {
         this.stock = stock;
     }
+
+    public String getDescription() {
+        return description;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+    }
 }