package com.gkhy.exam.framework.event;
|
|
import com.gkhy.exam.system.domain.ExPaperStudent;
|
import org.springframework.context.ApplicationEvent;
|
|
/**
|
*
|
*/
|
public class PaperStudentEvent extends ApplicationEvent {
|
private ExPaperStudent paperStudent;
|
|
public PaperStudentEvent(ExPaperStudent paperStudent) {
|
super(paperStudent);
|
this.paperStudent=paperStudent;
|
}
|
}
|