BaseProcessByLocationVo.java 730 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.huimv.receive.entity.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. public class BaseProcessByLocationVo {
  7. private Integer id;
  8. private String farmId;
  9. private String pcrType;
  10. private String passUserName;
  11. private String qualifiedDate;
  12. private Integer admissionUserId;
  13. private String testLocation;
  14. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  15. private Date checkDate;
  16. private Integer testLocationId;
  17. private Integer billStatus;
  18. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  19. private Date isolateEndDate;
  20. private Integer type;
  21. private String isolateDayNum;
  22. }