PurchaseApplyDto.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.java110.dto.purchaseApply;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 采购申请数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class PurchaseApplyDto extends PageDto implements Serializable {
  14. private String resOrderType;
  15. private String description;
  16. private String applyOrderId;
  17. private String state;
  18. private String storeId;
  19. private String userName;
  20. private String userId;
  21. private String stateName;
  22. private Date createTime;
  23. private String statusCd = "0";
  24. private String currentUserId;
  25. private String processInstanceId;
  26. private String taskId;
  27. private String auditCode;
  28. private String auditMessage;
  29. public String getResOrderType() {
  30. return resOrderType;
  31. }
  32. public void setResOrderType(String resOrderType) {
  33. this.resOrderType = resOrderType;
  34. }
  35. public String getDescription() {
  36. return description;
  37. }
  38. public void setDescription(String description) {
  39. this.description = description;
  40. }
  41. public String getApplyOrderId() {
  42. return applyOrderId;
  43. }
  44. public void setApplyOrderId(String applyOrderId) {
  45. this.applyOrderId = applyOrderId;
  46. }
  47. public String getState() {
  48. return state;
  49. }
  50. public void setState(String state) {
  51. this.state = state;
  52. }
  53. public String getStoreId() {
  54. return storeId;
  55. }
  56. public void setStoreId(String storeId) {
  57. this.storeId = storeId;
  58. }
  59. public String getUserName() {
  60. return userName;
  61. }
  62. public void setUserName(String userName) {
  63. this.userName = userName;
  64. }
  65. public String getUserId() {
  66. return userId;
  67. }
  68. public void setUserId(String userId) {
  69. this.userId = userId;
  70. }
  71. public Date getCreateTime() {
  72. return createTime;
  73. }
  74. public void setCreateTime(Date createTime) {
  75. this.createTime = createTime;
  76. }
  77. public String getStatusCd() {
  78. return statusCd;
  79. }
  80. public void setStatusCd(String statusCd) {
  81. this.statusCd = statusCd;
  82. }
  83. public String getStateName() {
  84. return stateName;
  85. }
  86. public void setStateName(String stateName) {
  87. this.stateName = stateName;
  88. }
  89. public String getCurrentUserId() {
  90. return currentUserId;
  91. }
  92. public void setCurrentUserId(String currentUserId) {
  93. this.currentUserId = currentUserId;
  94. }
  95. public String getProcessInstanceId() {
  96. return processInstanceId;
  97. }
  98. public void setProcessInstanceId(String processInstanceId) {
  99. this.processInstanceId = processInstanceId;
  100. }
  101. public String getTaskId() {
  102. return taskId;
  103. }
  104. public void setTaskId(String taskId) {
  105. this.taskId = taskId;
  106. }
  107. public String getAuditCode() {
  108. return auditCode;
  109. }
  110. public void setAuditCode(String auditCode) {
  111. this.auditCode = auditCode;
  112. }
  113. public String getAuditMessage() {
  114. return auditMessage;
  115. }
  116. public void setAuditMessage(String auditMessage) {
  117. this.auditMessage = auditMessage;
  118. }
  119. }