TOrderPublicReleaseCount.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 订单公出信息表(TOrderPublicReleaseCount)实体类
  6. *
  7. * @author makejava
  8. * @since 2024-09-20 15:22:04
  9. */
  10. public class TOrderPublicReleaseCount implements Serializable {
  11. private static final long serialVersionUID = -56144493896307473L;
  12. private Integer id;
  13. /**
  14. * 订单编号
  15. */
  16. private String orderNo;
  17. /**
  18. * 实际公出
  19. */
  20. private Double actualDuration;
  21. /**
  22. * 公出人数
  23. */
  24. private Integer peopleCount;
  25. /**
  26. * 公出次数
  27. */
  28. private Integer frequency;
  29. /**
  30. * 发起时间
  31. */
  32. private Date createTime;
  33. /**
  34. * 最大公出小时
  35. */
  36. private Double maxDuration;
  37. /**
  38. * 最大公出审核 0=未发起,1=技术总监审核中,2=财务总监审核中,3=驳回,4=完成
  39. */
  40. private Integer maxProcess;
  41. /**
  42. * 最大分类 0=不能公出,1=时间内公出,2=未设置公出
  43. */
  44. private Integer maxType;
  45. public Integer getId() {
  46. return id;
  47. }
  48. public void setId(Integer id) {
  49. this.id = id;
  50. }
  51. public String getOrderNo() {
  52. return orderNo;
  53. }
  54. public void setOrderNo(String orderNo) {
  55. this.orderNo = orderNo;
  56. }
  57. public Double getActualDuration() {
  58. return actualDuration;
  59. }
  60. public void setActualDuration(Double actualDuration) {
  61. this.actualDuration = actualDuration;
  62. }
  63. public Integer getPeopleCount() {
  64. return peopleCount;
  65. }
  66. public void setPeopleCount(Integer peopleCount) {
  67. this.peopleCount = peopleCount;
  68. }
  69. public Integer getFrequency() {
  70. return frequency;
  71. }
  72. public void setFrequency(Integer frequency) {
  73. this.frequency = frequency;
  74. }
  75. public Date getCreateTime() {
  76. return createTime;
  77. }
  78. public void setCreateTime(Date createTime) {
  79. this.createTime = createTime;
  80. }
  81. public Double getMaxDuration() {
  82. return maxDuration;
  83. }
  84. public void setMaxDuration(Double maxDuration) {
  85. this.maxDuration = maxDuration;
  86. }
  87. public Integer getMaxProcess() {
  88. return maxProcess;
  89. }
  90. public void setMaxProcess(Integer maxProcess) {
  91. this.maxProcess = maxProcess;
  92. }
  93. public Integer getMaxType() {
  94. return maxType;
  95. }
  96. public void setMaxType(Integer maxType) {
  97. this.maxType = maxType;
  98. }
  99. }