PublicReleaseClock.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.goafanti.common.model;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * 公出打卡表
  7. * @TableName public_release_clock
  8. */
  9. public class PublicReleaseClock implements Serializable {
  10. /**
  11. *
  12. */
  13. private Integer id;
  14. /**
  15. * 公出编号
  16. */
  17. private Integer prid;
  18. /**
  19. * 公出详情编号
  20. */
  21. private Integer prdid;
  22. /**
  23. * 附件
  24. */
  25. private String photoUrl;
  26. /**
  27. * 打卡时间
  28. */
  29. private Date clockInTime;
  30. /**
  31. * 发起时间
  32. */
  33. private Date createTime;
  34. private static final long serialVersionUID = 1L;
  35. /**
  36. *
  37. */
  38. public Integer getId() {
  39. return id;
  40. }
  41. /**
  42. *
  43. */
  44. public void setId(Integer id) {
  45. this.id = id;
  46. }
  47. /**
  48. * 公出编号
  49. */
  50. public Integer getPrid() {
  51. return prid;
  52. }
  53. /**
  54. * 公出编号
  55. */
  56. public void setPrid(Integer prid) {
  57. this.prid = prid;
  58. }
  59. /**
  60. * 公出详情编号
  61. */
  62. public Integer getPrdid() {
  63. return prdid;
  64. }
  65. /**
  66. * 公出详情编号
  67. */
  68. public void setPrdid(Integer prdid) {
  69. this.prdid = prdid;
  70. }
  71. /**
  72. * 附件
  73. */
  74. public String getPhotoUrl() {
  75. return photoUrl;
  76. }
  77. /**
  78. * 附件
  79. */
  80. public void setPhotoUrl(String photoUrl) {
  81. this.photoUrl = photoUrl;
  82. }
  83. /**
  84. * 打卡时间
  85. */
  86. @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
  87. public Date getClockInTime() {
  88. return clockInTime;
  89. }
  90. /**
  91. * 打卡时间
  92. */
  93. public void setClockInTime(Date clockInTime) {
  94. this.clockInTime = clockInTime;
  95. }
  96. /**
  97. * 发起时间
  98. */
  99. public Date getCreateTime() {
  100. return createTime;
  101. }
  102. /**
  103. * 发起时间
  104. */
  105. public void setCreateTime(Date createTime) {
  106. this.createTime = createTime;
  107. }
  108. }