huangzhen
2023-09-15 ea09629d8857e0afa329858f72cf1c93e25b813c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.gkhy.exam.coalmine.model.dto.resp;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/9/12 13:14
 */
@Data
public class GetExaminerOperateTypesRespDTO implements Serializable {
 
    private Long id;
 
    //老师管理id
    private Long teacherManageId;
 
    //操作类型
    private Long operateTypeId;
 
    //资格类型
    private String qualificationType;
 
    //作业类别
    private String jobCategory;
 
    //操作项目
    private String operationItems;
 
    private Integer type;
 
}