|
|
@@ -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;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|