TOrderPublicReleaseCount.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. /**
  46. * 统计年份
  47. */
  48. private String sumYear;
  49. private static final long serialVersionUID = 1L;
  50. /**
  51. *
  52. */
  53. public Integer getId() {
  54. return id;
  55. }
  56. /**
  57. *
  58. */
  59. public void setId(Integer id) {
  60. this.id = id;
  61. }
  62. /**
  63. * 订单编号
  64. */
  65. public String getOrderNo() {
  66. return orderNo;
  67. }
  68. /**
  69. * 订单编号
  70. */
  71. public void setOrderNo(String orderNo) {
  72. this.orderNo = orderNo;
  73. }
  74. /**
  75. * 状态0=无需限制,1需要限制
  76. */
  77. public Integer getStatus() {
  78. return status;
  79. }
  80. /**
  81. * 状态0=无需限制,1需要限制
  82. */
  83. public void setStatus(Integer status) {
  84. this.status = status;
  85. }
  86. /**
  87. * 最大公出
  88. */
  89. public Double getMaxDuration() {
  90. return maxDuration;
  91. }
  92. /**
  93. * 最大公出
  94. */
  95. public void setMaxDuration(Double maxDuration) {
  96. this.maxDuration = maxDuration;
  97. }
  98. /**
  99. * 实际公出
  100. */
  101. public Double getActualDuration() {
  102. return actualDuration;
  103. }
  104. /**
  105. * 实际公出
  106. */
  107. public void setActualDuration(Double actualDuration) {
  108. this.actualDuration = actualDuration;
  109. }
  110. /**
  111. * 超出公出
  112. */
  113. public Double getExceedDuration() {
  114. return exceedDuration;
  115. }
  116. /**
  117. * 超出公出
  118. */
  119. public void setExceedDuration(Double exceedDuration) {
  120. this.exceedDuration = exceedDuration;
  121. }
  122. /**
  123. * 公出人数
  124. */
  125. public Integer getPeopleCount() {
  126. return peopleCount;
  127. }
  128. /**
  129. * 公出人数
  130. */
  131. public void setPeopleCount(Integer peopleCount) {
  132. this.peopleCount = peopleCount;
  133. }
  134. /**
  135. * 公出次数
  136. */
  137. public Integer getFrequency() {
  138. return frequency;
  139. }
  140. /**
  141. * 公出次数
  142. */
  143. public void setFrequency(Integer frequency) {
  144. this.frequency = frequency;
  145. }
  146. /**
  147. * 发起时间
  148. */
  149. public Date getCreateTime() {
  150. return createTime;
  151. }
  152. /**
  153. * 发起时间
  154. */
  155. public void setCreateTime(Date createTime) {
  156. this.createTime = createTime;
  157. }
  158. /**
  159. * 统计年份
  160. */
  161. public String getSumYear() {
  162. return sumYear;
  163. }
  164. /**
  165. * 统计年份
  166. */
  167. public void setSumYear(String sumYear) {
  168. this.sumYear = sumYear;
  169. }
  170. }