fuliqi
2024-11-18 5dfb6f1236099c3f1d0a792500d70ce6ba8d96bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ycl.platform.domain.dto;
 
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
@Data
public class CheckScoreDTO {
    private List<Integer> id;
    private String publish;
    private Date updateTime;
    private Long updateUser;
 
    private Date createTime;
    private Integer examineTag;
}