TOrderPublicReleaseCount.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 订单公出信息表
  6. * @TableName t_order_public_release_count
  7. */
  8. public class TOrderPublicReleaseCount implements Serializable {
  9. /**
  10. *
  11. */
  12. private Integer id;
  13. /**
  14. * 订单编号
  15. */
  16. private String orderNo;
  17. /**
  18. * 状态0=无需限制,1需要限制
  19. */
  20. private Integer status;
  21. /**
  22. * 最大公出
  23. */
  24. private Double maxDuration;
  25. /**
  26. * 实际公出
  27. */
  28. private Double actualDuration;
  29. /**
  30. * 超出公出
  31. */
  32. private Double exceedDuration;
  33. /**
  34. * 公出人数
  35. */
  36. private Integer peopleCount;
  37. /**
  38. * 公出次数
  39. */
  40. private Integer frequency;
  41. /**
  42. * 发起时间
  43. */
  44. private Date createTime;
  45. private static final long serialVersionUID = 1L;
  46. /**
  47. *
  48. */
  49. public Integer getId() {
  50. return id;
  51. }
  52. /**
  53. *
  54. */
  55. public void setId(Integer id) {
  56. this.id = id;
  57. }
  58. /**
  59. * 订单编号
  60. */
  61. public String getOrderNo() {
  62. return orderNo;
  63. }
  64. /**
  65. * 订单编号
  66. */
  67. public void setOrderNo(String orderNo) {
  68. this.orderNo = orderNo;
  69. }
  70. /**
  71. * 状态0=无需限制,1需要限制
  72. */
  73. public Integer getStatus() {
  74. return status;
  75. }
  76. /**
  77. * 状态0=无需限制,1需要限制
  78. */
  79. public void setStatus(Integer status) {
  80. this.status = status;
  81. }
  82. /**
  83. * 最大公出
  84. */
  85. public Double getMaxDuration() {
  86. return maxDuration;
  87. }
  88. /**
  89. * 最大公出
  90. */
  91. public void setMaxDuration(Double maxDuration) {
  92. this.maxDuration = maxDuration;
  93. }
  94. /**
  95. * 实际公出
  96. */
  97. public Double getActualDuration() {
  98. return actualDuration;
  99. }
  100. /**
  101. * 实际公出
  102. */
  103. public void setActualDuration(Double actualDuration) {
  104. this.actualDuration = actualDuration;
  105. }
  106. /**
  107. * 超出公出
  108. */
  109. public Double getExceedDuration() {
  110. return exceedDuration;
  111. }
  112. /**
  113. * 超出公出
  114. */
  115. public void setExceedDuration(Double exceedDuration) {
  116. this.exceedDuration = exceedDuration;
  117. }
  118. /**
  119. * 公出人数
  120. */
  121. public Integer getPeopleCount() {
  122. return peopleCount;
  123. }
  124. /**
  125. * 公出人数
  126. */
  127. public void setPeopleCount(Integer peopleCount) {
  128. this.peopleCount = peopleCount;
  129. }
  130. /**
  131. * 公出次数
  132. */
  133. public Integer getFrequency() {
  134. return frequency;
  135. }
  136. /**
  137. * 公出次数
  138. */
  139. public void setFrequency(Integer frequency) {
  140. this.frequency = frequency;
  141. }
  142. /**
  143. * 发起时间
  144. */
  145. public Date getCreateTime() {
  146. return createTime;
  147. }
  148. /**
  149. * 发起时间
  150. */
  151. public void setCreateTime(Date createTime) {
  152. this.createTime = createTime;
  153. }
  154. }