健腾mes后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

166 lines
3.5 KiB

3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
  1. package com.jianteng.modules.base.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import org.apache.ibatis.type.Alias;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. @Alias("CalendarExceptionShiftData")
  8. public class CalendarExceptionShiftData {
  9. private int id;
  10. private String site;
  11. private String calendarId;
  12. private String shiftNo;
  13. @DateTimeFormat(pattern = "yyyy-MM-dd")
  14. @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
  15. private Date scheduledate;
  16. private String shiftDesc;
  17. @DateTimeFormat(pattern = "HH:mm")
  18. @JsonFormat(pattern = "HH:mm", timezone = "GMT+8")
  19. private Date startexacttime;
  20. @DateTimeFormat(pattern = "HH:mm")
  21. @JsonFormat(pattern = "HH:mm", timezone = "GMT+8")
  22. private Date endexacttime;
  23. private BigDecimal starttime;
  24. private BigDecimal endtime;
  25. private Date createdDate;
  26. private String createdBy;
  27. private Date updateDate;
  28. private String updateBy;
  29. private String delflag;
  30. private int version;
  31. public int getId() {
  32. return id;
  33. }
  34. public void setId(int id) {
  35. this.id = id;
  36. }
  37. public String getSite() {
  38. return site;
  39. }
  40. public void setSite(String site) {
  41. this.site = site;
  42. }
  43. public String getCalendarId() {
  44. return calendarId;
  45. }
  46. public void setCalendarId(String calendarId) {
  47. this.calendarId = calendarId;
  48. }
  49. public Date getScheduledate() {
  50. return scheduledate;
  51. }
  52. public void setScheduledate(Date scheduledate) {
  53. this.scheduledate = scheduledate;
  54. }
  55. public String getShiftNo() {
  56. return shiftNo;
  57. }
  58. public void setShiftNo(String shiftNo) {
  59. this.shiftNo = shiftNo;
  60. }
  61. public String getShiftDesc() {
  62. return shiftDesc;
  63. }
  64. public void setShiftDesc(String shiftDesc) {
  65. this.shiftDesc = shiftDesc;
  66. }
  67. public Date getStartexacttime() {
  68. return startexacttime;
  69. }
  70. public void setStartexacttime(Date startexacttime) {
  71. this.startexacttime = startexacttime;
  72. }
  73. public Date getEndexacttime() {
  74. return endexacttime;
  75. }
  76. public void setEndexacttime(Date endexacttime) {
  77. this.endexacttime = endexacttime;
  78. }
  79. public BigDecimal getStarttime() {
  80. return starttime;
  81. }
  82. public void setStarttime(BigDecimal starttime) {
  83. this.starttime = starttime;
  84. }
  85. public BigDecimal getEndtime() {
  86. return endtime;
  87. }
  88. public void setEndtime(BigDecimal endtime) {
  89. this.endtime = endtime;
  90. }
  91. public Date getCreatedDate() {
  92. return createdDate;
  93. }
  94. public void setCreatedDate(Date createdDate) {
  95. this.createdDate = createdDate;
  96. }
  97. public String getCreatedBy() {
  98. return createdBy;
  99. }
  100. public void setCreatedBy(String createdBy) {
  101. this.createdBy = createdBy;
  102. }
  103. public Date getUpdateDate() {
  104. return updateDate;
  105. }
  106. public void setUpdateDate(Date updateDate) {
  107. this.updateDate = updateDate;
  108. }
  109. public String getUpdateBy() {
  110. return updateBy;
  111. }
  112. public void setUpdateBy(String updateBy) {
  113. this.updateBy = updateBy;
  114. }
  115. public String getDelflag() {
  116. return delflag;
  117. }
  118. public void setDelflag(String delflag) {
  119. this.delflag = delflag;
  120. }
  121. public int getVersion() {
  122. return version;
  123. }
  124. public void setVersion(int version) {
  125. this.version = version;
  126. }
  127. }