package com.huimv.receive.entity.vo; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.util.Date; @Data public class BaseProcessByLocationVo { private Integer id; private String farmId; private String pcrType; private String passUserName; private String qualifiedDate; private Integer admissionUserId; private String testLocation; @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8") private Date checkDate; private Integer testLocationId; private Integer billStatus; @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8") private Date isolateEndDate; private Integer type; private String isolateDayNum; }