java110-bean/src/main/java/com/java110/dto/purchaseApply/PurchaseApplyDetailDto.java
@@ -13,6 +13,9 @@
    private String resCode;
    private String price;
    private String stock;
    private String purchaseQuantity;
    private String purchaseRemark;
    private String purchasePrice;
    private String id;
    public String getApplyOrderId() {
@@ -94,6 +97,30 @@
    public void setId(String id) {
        this.id = id;
    }
    public String getPurchaseQuantity() {
        return purchaseQuantity;
    }
    public void setPurchaseQuantity(String purchaseQuantity) {
        this.purchaseQuantity = purchaseQuantity;
    }
    public String getPurchaseRemark() {
        return purchaseRemark;
    }
    public void setPurchaseRemark(String purchaseRemark) {
        this.purchaseRemark = purchaseRemark;
    }
    public String getPurchasePrice() {
        return purchasePrice;
    }
    public void setPurchasePrice(String purchasePrice) {
        this.purchasePrice = purchasePrice;
    }
}