YmjzImportErrorLog.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.boman.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Builder;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.NoArgsConstructor;
  7. import java.util.Date;
  8. /**
  9. * 疫苗接种导入错误日志
  10. */
  11. @Builder
  12. @AllArgsConstructor
  13. @NoArgsConstructor
  14. public class YmjzImportErrorLog extends BaseEntity{
  15. private Long id;
  16. private String username;
  17. private String town;
  18. private String place;
  19. private String vaccineName;
  20. private String jici;
  21. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  22. private Date vaccinationTime;
  23. private String vaccinationPlace;
  24. private String isDel;
  25. private String createBy;
  26. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  27. private Date createTime;
  28. private String updateBy;
  29. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  30. private Date updateTime;
  31. public String getTown() {
  32. return town;
  33. }
  34. public void setTown(String town) {
  35. this.town = town;
  36. }
  37. public Long getId() {
  38. return id;
  39. }
  40. public void setId(Long id) {
  41. this.id = id;
  42. }
  43. public String getUsername() {
  44. return username;
  45. }
  46. public void setUsername(String username) {
  47. this.username = username;
  48. }
  49. public String getPlace() {
  50. return place;
  51. }
  52. public void setPlace(String place) {
  53. this.place = place;
  54. }
  55. public String getVaccineName() {
  56. return vaccineName;
  57. }
  58. public void setVaccineName(String vaccineName) {
  59. this.vaccineName = vaccineName;
  60. }
  61. public String getJici() {
  62. return jici;
  63. }
  64. public void setJici(String jici) {
  65. this.jici = jici;
  66. }
  67. public Date getVaccinationTime() {
  68. return vaccinationTime;
  69. }
  70. public void setVaccinationTime(Date vaccinationTime) {
  71. this.vaccinationTime = vaccinationTime;
  72. }
  73. public String getVaccinationPlace() {
  74. return vaccinationPlace;
  75. }
  76. public void setVaccinationPlace(String vaccinationPlace) {
  77. this.vaccinationPlace = vaccinationPlace;
  78. }
  79. public String getIsDel() {
  80. return isDel;
  81. }
  82. public void setIsDel(String isDel) {
  83. this.isDel = isDel;
  84. }
  85. }