AllocationStorehouseApplyDto.java 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. package com.java110.dto.purchase;
  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 AllocationStorehouseApplyDto extends PageDto implements Serializable {
  14. /**
  15. * 10000 调拨
  16. * 20000 退还
  17. * 30000 紧急调拨
  18. */
  19. public static final String STORE_TYPE_ALLOCATION = "10000"; //调拨
  20. public static final String STORE_TYPE_RETURN = "20000";
  21. public static final String STORE_TYPE_URGENT_ALLOCATION = "30000"; //紧急调拨
  22. private String applyId;
  23. private String[] applyIds;
  24. private String bId;
  25. private String startUserId;
  26. private String startUserName;
  27. private String applyCount;
  28. private String remark;
  29. private String state;
  30. private String stateName;
  31. private String storeId;
  32. private String currentUserId;
  33. private String processInstanceId;
  34. private String taskId;
  35. private String auditCode;
  36. private String auditMessage;
  37. private String staffId;
  38. private String staffName;
  39. private String staffTel;
  40. private String startTime;
  41. private String endTime;
  42. private String communityId;
  43. private String nextUserId;
  44. private Date createTime;
  45. private String statusCd = "0";
  46. //状态标识
  47. private String noticeState;
  48. //调拨返还状态标识
  49. private String applyType;
  50. private String applyTypeName;
  51. //调拨源仓库
  52. private String shId;
  53. private String storeManager;
  54. private String processDefinitionKey;
  55. public String getApplyId() {
  56. return applyId;
  57. }
  58. public void setApplyId(String applyId) {
  59. this.applyId = applyId;
  60. }
  61. public String getStartUserId() {
  62. return startUserId;
  63. }
  64. public void setStartUserId(String startUserId) {
  65. this.startUserId = startUserId;
  66. }
  67. public String getStartUserName() {
  68. return startUserName;
  69. }
  70. public void setStartUserName(String startUserName) {
  71. this.startUserName = startUserName;
  72. }
  73. public String getApplyCount() {
  74. return applyCount;
  75. }
  76. public void setApplyCount(String applyCount) {
  77. this.applyCount = applyCount;
  78. }
  79. public String getRemark() {
  80. return remark;
  81. }
  82. public void setRemark(String remark) {
  83. this.remark = remark;
  84. }
  85. public String getState() {
  86. return state;
  87. }
  88. public void setState(String state) {
  89. this.state = state;
  90. }
  91. public String getStoreId() {
  92. return storeId;
  93. }
  94. public void setStoreId(String storeId) {
  95. this.storeId = storeId;
  96. }
  97. public Date getCreateTime() {
  98. return createTime;
  99. }
  100. public void setCreateTime(Date createTime) {
  101. this.createTime = createTime;
  102. }
  103. public String getStatusCd() {
  104. return statusCd;
  105. }
  106. public void setStatusCd(String statusCd) {
  107. this.statusCd = statusCd;
  108. }
  109. public String getCurrentUserId() {
  110. return currentUserId;
  111. }
  112. public void setCurrentUserId(String currentUserId) {
  113. this.currentUserId = currentUserId;
  114. }
  115. public String getProcessInstanceId() {
  116. return processInstanceId;
  117. }
  118. public void setProcessInstanceId(String processInstanceId) {
  119. this.processInstanceId = processInstanceId;
  120. }
  121. public String getTaskId() {
  122. return taskId;
  123. }
  124. public void setTaskId(String taskId) {
  125. this.taskId = taskId;
  126. }
  127. public String getAuditCode() {
  128. return auditCode;
  129. }
  130. public void setAuditCode(String auditCode) {
  131. this.auditCode = auditCode;
  132. }
  133. public String getAuditMessage() {
  134. return auditMessage;
  135. }
  136. public void setAuditMessage(String auditMessage) {
  137. this.auditMessage = auditMessage;
  138. }
  139. public String getStaffId() {
  140. return staffId;
  141. }
  142. public void setStaffId(String staffId) {
  143. this.staffId = staffId;
  144. }
  145. public String getStaffName() {
  146. return staffName;
  147. }
  148. public void setStaffName(String staffName) {
  149. this.staffName = staffName;
  150. }
  151. public String getStaffTel() {
  152. return staffTel;
  153. }
  154. public void setStaffTel(String staffTel) {
  155. this.staffTel = staffTel;
  156. }
  157. public String[] getApplyIds() {
  158. return applyIds;
  159. }
  160. public void setApplyIds(String[] applyIds) {
  161. this.applyIds = applyIds;
  162. }
  163. public String getStateName() {
  164. return stateName;
  165. }
  166. public void setStateName(String stateName) {
  167. this.stateName = stateName;
  168. }
  169. public String getStartTime() {
  170. return startTime;
  171. }
  172. public void setStartTime(String startTime) {
  173. this.startTime = startTime;
  174. }
  175. public String getEndTime() {
  176. return endTime;
  177. }
  178. public void setEndTime(String endTime) {
  179. this.endTime = endTime;
  180. }
  181. public String getCommunityId() {
  182. return communityId;
  183. }
  184. public void setCommunityId(String communityId) {
  185. this.communityId = communityId;
  186. }
  187. public String getNoticeState() {
  188. return noticeState;
  189. }
  190. public void setNoticeState(String noticeState) {
  191. this.noticeState = noticeState;
  192. }
  193. public String getApplyType() {
  194. return applyType;
  195. }
  196. public void setApplyType(String applyType) {
  197. this.applyType = applyType;
  198. }
  199. public String getApplyTypeName() {
  200. return applyTypeName;
  201. }
  202. public void setApplyTypeName(String applyTypeName) {
  203. this.applyTypeName = applyTypeName;
  204. }
  205. public String getbId() {
  206. return bId;
  207. }
  208. public void setbId(String bId) {
  209. this.bId = bId;
  210. }
  211. public String getShId() {
  212. return shId;
  213. }
  214. public void setShId(String shId) {
  215. this.shId = shId;
  216. }
  217. public String getNextUserId() {
  218. return nextUserId;
  219. }
  220. public void setNextUserId(String nextUserId) {
  221. this.nextUserId = nextUserId;
  222. }
  223. public String getStoreManager() {
  224. return storeManager;
  225. }
  226. public void setStoreManager(String storeManager) {
  227. this.storeManager = storeManager;
  228. }
  229. public String getProcessDefinitionKey() {
  230. return processDefinitionKey;
  231. }
  232. public void setProcessDefinitionKey(String processDefinitionKey) {
  233. this.processDefinitionKey = processDefinitionKey;
  234. }
  235. }