教育训练处考试制证系统后端
“djh”
2025-02-25 70dcf4e610a0ec5fd6ca2c3daf9edf4957b30529
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;
 
 
}