CommunitySpaceConfirmOrderDto.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.java110.dto.communitySpaceConfirmOrder;
  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 CommunitySpaceConfirmOrderDto extends PageDto implements Serializable {
  14. private String spaceId;
  15. private String spaceName;
  16. private String cspId;
  17. private String timeId;
  18. private String orderId;
  19. private String remark;
  20. private String communityId;
  21. private String personName;
  22. private String personTel;
  23. private String appointmentTime;
  24. private String hours;
  25. private String venueName;
  26. private Date createTime;
  27. private String statusCd = "0";
  28. public String getSpaceId() {
  29. return spaceId;
  30. }
  31. public void setSpaceId(String spaceId) {
  32. this.spaceId = spaceId;
  33. }
  34. public String getCspId() {
  35. return cspId;
  36. }
  37. public void setCspId(String cspId) {
  38. this.cspId = cspId;
  39. }
  40. public String getTimeId() {
  41. return timeId;
  42. }
  43. public void setTimeId(String timeId) {
  44. this.timeId = timeId;
  45. }
  46. public String getOrderId() {
  47. return orderId;
  48. }
  49. public void setOrderId(String orderId) {
  50. this.orderId = orderId;
  51. }
  52. public String getRemark() {
  53. return remark;
  54. }
  55. public void setRemark(String remark) {
  56. this.remark = remark;
  57. }
  58. public String getCommunityId() {
  59. return communityId;
  60. }
  61. public void setCommunityId(String communityId) {
  62. this.communityId = communityId;
  63. }
  64. public Date getCreateTime() {
  65. return createTime;
  66. }
  67. public void setCreateTime(Date createTime) {
  68. this.createTime = createTime;
  69. }
  70. public String getStatusCd() {
  71. return statusCd;
  72. }
  73. public void setStatusCd(String statusCd) {
  74. this.statusCd = statusCd;
  75. }
  76. public String getSpaceName() {
  77. return spaceName;
  78. }
  79. public void setSpaceName(String spaceName) {
  80. this.spaceName = spaceName;
  81. }
  82. public String getPersonName() {
  83. return personName;
  84. }
  85. public void setPersonName(String personName) {
  86. this.personName = personName;
  87. }
  88. public String getPersonTel() {
  89. return personTel;
  90. }
  91. public void setPersonTel(String personTel) {
  92. this.personTel = personTel;
  93. }
  94. public String getAppointmentTime() {
  95. return appointmentTime;
  96. }
  97. public void setAppointmentTime(String appointmentTime) {
  98. this.appointmentTime = appointmentTime;
  99. }
  100. public String getHours() {
  101. return hours;
  102. }
  103. public void setHours(String hours) {
  104. this.hours = hours;
  105. }
  106. public String getVenueName() {
  107. return venueName;
  108. }
  109. public void setVenueName(String venueName) {
  110. this.venueName = venueName;
  111. }
  112. }