yanghb
2025-01-07 62be06e0df7a5ac6bcbfed63eed31f261e906fad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zzg.system.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
public class ParentCollectionFileVO {
    private String materialName;
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
    private Integer fileType;
}