教育训练处考试制证系统后端
“djh”
2025-02-05 727c30f11ede5b3c82ead6e09e5e077c0e7519f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.exam.institutionalaccess.model.resp;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class ThBatchCourseRespDTO {
    private String courseUuid;
    private String batchUuid;
    private String courseName;
    private Long duration;
    private String durationDesc;
 
    private List<ThStudentCourseRespDTO> studentList;
 
 
}