FeeCollectionOrderPo.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.java110.po.feeCollectionOrder;
  2. import java.io.Serializable;
  3. public class FeeCollectionOrderPo implements Serializable {
  4. private String orderId;
  5. private String staffName;
  6. private String statusCd = "0";
  7. private String state;
  8. private String communityId;
  9. private String collectionWay;
  10. private String staffId;
  11. private String remark;
  12. private String collectionName;
  13. public String getOrderId() {
  14. return orderId;
  15. }
  16. public void setOrderId(String orderId) {
  17. this.orderId = orderId;
  18. }
  19. public String getStaffName() {
  20. return staffName;
  21. }
  22. public void setStaffName(String staffName) {
  23. this.staffName = staffName;
  24. }
  25. public String getStatusCd() {
  26. return statusCd;
  27. }
  28. public void setStatusCd(String statusCd) {
  29. this.statusCd = statusCd;
  30. }
  31. public String getState() {
  32. return state;
  33. }
  34. public void setState(String state) {
  35. this.state = state;
  36. }
  37. public String getCommunityId() {
  38. return communityId;
  39. }
  40. public void setCommunityId(String communityId) {
  41. this.communityId = communityId;
  42. }
  43. public String getCollectionWay() {
  44. return collectionWay;
  45. }
  46. public void setCollectionWay(String collectionWay) {
  47. this.collectionWay = collectionWay;
  48. }
  49. public String getStaffId() {
  50. return staffId;
  51. }
  52. public void setStaffId(String staffId) {
  53. this.staffId = staffId;
  54. }
  55. public String getRemark() {
  56. return remark;
  57. }
  58. public void setRemark(String remark) {
  59. this.remark = remark;
  60. }
  61. public String getCollectionName() {
  62. return collectionName;
  63. }
  64. public void setCollectionName(String collectionName) {
  65. this.collectionName = collectionName;
  66. }
  67. }