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;
|
|
}
|