1234567891011121314151617181920 |
- package com.keao.edu.user.dto;
- import com.keao.edu.user.entity.ExamLifecycleLog;
- public class ExamLifecycleLogDto extends ExamLifecycleLog {
- private String operatorName;
- public String getOperatorName() {
- return operatorName;
- }
- public void setOperatorName(String operatorName) {
- this.operatorName = operatorName;
- }
- }
|