package com.java110.vo.api.purchaseApply; import java.io.Serializable; import java.util.List; public class ApiPurchaseApplyDataVo implements Serializable { private String applyOrderId; private String resOrderType; private String state; private String userName; private String stateName; //申请时间 private String createTime; //物品名称是 private String resourceNames; //累计价格 private String totalPrice; private List purchaseApplyDetailVo; private String description; 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 String getCreateTime() { return createTime; } public void setCreateTime(String 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; } public List getPurchaseApplyDetailVo() { return purchaseApplyDetailVo; } public void setPurchaseApplyDetailVo(List purchaseApplyDetailVo) { this.purchaseApplyDetailVo = purchaseApplyDetailVo; } public String getStateName() { return stateName; } public void setStateName(String stateName) { this.stateName = stateName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getResOrderType() { return resOrderType; } public void setResOrderType(String resOrderType) { this.resOrderType = resOrderType; } }