OtherDocumentsVO.java 569 B

1234567891011121314151617181920212223
  1. package cn.cslg.pas.common.vo.invalidVO;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import java.util.Date;
  6. /**
  7. * 其他文档VO
  8. * @Author xiexiang
  9. * @Date 2023/12/28
  10. */
  11. @Data
  12. public class OtherDocumentsVO {
  13. private Integer documentId;
  14. private String documentName;
  15. @DateTimeFormat(pattern = "yyyy-MM-dd")
  16. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  17. private Date documentTime;
  18. private Integer projectId;
  19. private String description;
  20. }