| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 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> 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<PurchaseApplyDetailVo> getPurchaseApplyDetailVo() {
- return purchaseApplyDetailVo;
- }
- public void setPurchaseApplyDetailVo(List<PurchaseApplyDetailVo> 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;
- }
- }
|