java110-bean/src/main/java/com/java110/vo/api/purchaseApply/PurchaseApplyDetailVo.java
@@ -18,6 +18,9 @@
    private String operate;
    private String statusCd;
    private String description;
    private String purchaseQuantity;
    private String purchaseRemark;
    private String purchasePrice;
    public String getApplyOrderId() {
@@ -131,6 +134,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;
    }
}