Kaynağa Gözat

采购申请

mrzcc 6 yıl önce
ebeveyn
işleme
7e6237aef6

+ 66 - 0
java110-bean/src/main/java/com/java110/vo/api/purchaseApply/ApiPurchaseApplyDataVo.java

@@ -0,0 +1,66 @@
+package com.java110.vo.api.purchaseApply;
+
+import java.io.Serializable;
+import java.util.Date;
+
+public class ApiPurchaseApplyDataVo implements Serializable {
+
+    private String applyOrderId;
+    private String state;
+    private String userName;
+    //申请时间
+    private Date createTime;
+    //物品名称是
+    private String resourceNames;
+    //累计价格
+    private String totalPrice;
+
+
+    public String getApplyOrderId() {
+        return applyOrderId;
+    }
+
+    public void setApplyOrderId(String applyOrderId) {
+        this.applyOrderId = applyOrderId;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state;
+    }
+
+    public String getUserName() {
+        return userName;
+    }
+
+    public void setUserName(String userName) {
+        this.userName = userName;
+    }
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+
+    public String getResourceNames() {
+        return resourceNames;
+    }
+
+    public void setResourceNames(String resourceNames) {
+        this.resourceNames = resourceNames;
+    }
+
+    public String getTotalPrice() {
+        return totalPrice;
+    }
+
+    public void setTotalPrice(String totalPrice) {
+        this.totalPrice = totalPrice;
+    }
+}

+ 19 - 0
java110-bean/src/main/java/com/java110/vo/api/purchaseApply/ApiPurchaseApplyVo.java

@@ -0,0 +1,19 @@
+package com.java110.vo.api.purchaseApply;
+
+import com.java110.vo.MorePageVo;
+
+import java.io.Serializable;
+import java.util.List;
+
+public class ApiPurchaseApplyVo extends MorePageVo implements Serializable {
+    List<ApiPurchaseApplyDataVo> purchaseApplys;
+
+
+    public List<ApiPurchaseApplyDataVo> getPurchaseApplys() {
+        return purchaseApplys;
+    }
+
+    public void setPurchaseApplys(List<ApiPurchaseApplyDataVo> purchaseApplys) {
+        this.purchaseApplys = purchaseApplys;
+    }
+}