ApiPurchaseApplyDataVo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package com.java110.vo.api.purchaseApply;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. public class ApiPurchaseApplyDataVo implements Serializable {
  5. private String applyOrderId;
  6. private String resOrderType;
  7. private String state;
  8. private String userName;
  9. private String stateName;
  10. //申请时间
  11. private String createTime;
  12. //物品名称是
  13. private String resourceNames;
  14. //累计价格
  15. private String totalPrice;
  16. private List<PurchaseApplyDetailVo> purchaseApplyDetailVo;
  17. private String description;
  18. public String getApplyOrderId() {
  19. return applyOrderId;
  20. }
  21. public void setApplyOrderId(String applyOrderId) {
  22. this.applyOrderId = applyOrderId;
  23. }
  24. public String getState() {
  25. return state;
  26. }
  27. public void setState(String state) {
  28. this.state = state;
  29. }
  30. public String getUserName() {
  31. return userName;
  32. }
  33. public void setUserName(String userName) {
  34. this.userName = userName;
  35. }
  36. public String getCreateTime() {
  37. return createTime;
  38. }
  39. public void setCreateTime(String createTime) {
  40. this.createTime = createTime;
  41. }
  42. public String getResourceNames() {
  43. return resourceNames;
  44. }
  45. public void setResourceNames(String resourceNames) {
  46. this.resourceNames = resourceNames;
  47. }
  48. public String getTotalPrice() {
  49. return totalPrice;
  50. }
  51. public void setTotalPrice(String totalPrice) {
  52. this.totalPrice = totalPrice;
  53. }
  54. public List<PurchaseApplyDetailVo> getPurchaseApplyDetailVo() {
  55. return purchaseApplyDetailVo;
  56. }
  57. public void setPurchaseApplyDetailVo(List<PurchaseApplyDetailVo> purchaseApplyDetailVo) {
  58. this.purchaseApplyDetailVo = purchaseApplyDetailVo;
  59. }
  60. public String getStateName() {
  61. return stateName;
  62. }
  63. public void setStateName(String stateName) {
  64. this.stateName = stateName;
  65. }
  66. public String getDescription() {
  67. return description;
  68. }
  69. public void setDescription(String description) {
  70. this.description = description;
  71. }
  72. public String getResOrderType() {
  73. return resOrderType;
  74. }
  75. public void setResOrderType(String resOrderType) {
  76. this.resOrderType = resOrderType;
  77. }
  78. }