ExamLifecycleLogDto.java 406 B

1234567891011121314151617181920
  1. package com.keao.edu.user.dto;
  2. import com.keao.edu.user.entity.ExamLifecycleLog;
  3. /**
  4. * @Author Joburgess
  5. * @Date 2020.07.17
  6. */
  7. public class ExamLifecycleLogDto extends ExamLifecycleLog {
  8. private String operatorName;
  9. public String getOperatorName() {
  10. return operatorName;
  11. }
  12. public void setOperatorName(String operatorName) {
  13. this.operatorName = operatorName;
  14. }
  15. }