ScheduleClassesDto.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. package com.java110.dto.scheduleClasses;
  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 ScheduleClassesDto extends PageDto implements Serializable {
  14. public static final String STATE_START = "1001";
  15. public static final String STATE_STOP = "2002";
  16. private String scheduleType;
  17. private String scheduleTypeName;
  18. private String scheduleCycle;
  19. private String computeTime;
  20. private String name;
  21. private String nameLike;
  22. private String remark;
  23. private String state;
  24. private String stateName;
  25. private String storeId;
  26. private String scheduleId;
  27. private long staffCount;
  28. private Date createTime;
  29. private String statusCd = "0";
  30. public String getScheduleType() {
  31. return scheduleType;
  32. }
  33. public void setScheduleType(String scheduleType) {
  34. this.scheduleType = scheduleType;
  35. }
  36. public String getScheduleCycle() {
  37. return scheduleCycle;
  38. }
  39. public void setScheduleCycle(String scheduleCycle) {
  40. this.scheduleCycle = scheduleCycle;
  41. }
  42. public String getComputeTime() {
  43. return computeTime;
  44. }
  45. public void setComputeTime(String computeTime) {
  46. this.computeTime = computeTime;
  47. }
  48. public String getName() {
  49. return name;
  50. }
  51. public void setName(String name) {
  52. this.name = name;
  53. }
  54. public String getRemark() {
  55. return remark;
  56. }
  57. public void setRemark(String remark) {
  58. this.remark = remark;
  59. }
  60. public String getState() {
  61. return state;
  62. }
  63. public void setState(String state) {
  64. this.state = state;
  65. }
  66. public String getStoreId() {
  67. return storeId;
  68. }
  69. public void setStoreId(String storeId) {
  70. this.storeId = storeId;
  71. }
  72. public String getScheduleId() {
  73. return scheduleId;
  74. }
  75. public void setScheduleId(String scheduleId) {
  76. this.scheduleId = scheduleId;
  77. }
  78. public Date getCreateTime() {
  79. return createTime;
  80. }
  81. public void setCreateTime(Date createTime) {
  82. this.createTime = createTime;
  83. }
  84. public String getStatusCd() {
  85. return statusCd;
  86. }
  87. public void setStatusCd(String statusCd) {
  88. this.statusCd = statusCd;
  89. }
  90. public String getScheduleTypeName() {
  91. return scheduleTypeName;
  92. }
  93. public void setScheduleTypeName(String scheduleTypeName) {
  94. this.scheduleTypeName = scheduleTypeName;
  95. }
  96. public String getNameLike() {
  97. return nameLike;
  98. }
  99. public void setNameLike(String nameLike) {
  100. this.nameLike = nameLike;
  101. }
  102. public String getStateName() {
  103. return stateName;
  104. }
  105. public void setStateName(String stateName) {
  106. this.stateName = stateName;
  107. }
  108. public long getStaffCount() {
  109. return staffCount;
  110. }
  111. public void setStaffCount(long staffCount) {
  112. this.staffCount = staffCount;
  113. }
  114. }