“djh”
2025-06-24 e0e136f627de2c724b84b02fda02376b53c9e97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.gkhy.exam.system.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gkhy.exam.system.domain.QualityTarget;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
 
@Getter
@Setter
public class QualityDecomposeVo  {
 
    private Integer id;
    private Integer companyId;
    private String companyName;
    private String year;
    private Integer type;
    private String departName;
    private Integer qualityId;
    private String number;
    private String serial;
    private Integer fictionId;
    private String fictionName;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date fictionTime;
    private Integer checkId;
    private String checkName;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date checkTime;
    private Integer ratifyId;
    private String ratifyName;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date ratifyTime;
    private Integer delFlag;
    private String createBy;
    private LocalDateTime createTime;
    private String updateBy;
    private LocalDateTime updateTime;
    private List<QualityTarget> qualityTargets;
}