package com.sandu.ximon.admin.security.order;
|
|
import com.sandu.ximon.dao.domain.C3mOrder;
|
import org.springframework.context.ApplicationEvent;
|
|
/**
|
* @Author liuhaonan
|
* @Version 1.0
|
*/
|
public class C3mOrderQueryEvent extends ApplicationEvent {
|
|
private C3mOrder c3mOrderEntity;
|
|
private Long startTime;
|
|
public C3mOrderQueryEvent(Object source, C3mOrder c3mOrderEntity, Long startTime) {
|
super(source);
|
this.c3mOrderEntity = c3mOrderEntity;
|
this.startTime = startTime;
|
}
|
|
public C3mOrder getC3mOrderEntity() {
|
return c3mOrderEntity;
|
}
|
|
public Long getStartTime() {
|
return startTime;
|
}
|
}
|