package cn.cslg.pas.common.vo.invalidVO; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; /** * 其他文档VO * @Author xiexiang * @Date 2023/12/28 */ @Data public class OtherDocumentsVO { private Integer documentId; private String documentName; @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date documentTime; private Integer projectId; private String description; }