教育训练处考试制证系统后端
zhangf
2024-06-24 21362fd048558832cdcaca8ee957d2d7aa753be2
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;
 
 
}