zxl
2025-03-28 d384786ab5868cd4d856691372eee5359e7d9b2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ycl.platform.domain.dto;
 
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
 
import java.util.List;
 
@Data
public class CheckScoreIndexDTO extends BaseEntity {
    private Long id;
    private String date;
    private List<String> quarter;
    private Integer examineTag;
}