2021与蓝度共同重构项目,服务端
liuhaonan
2022-03-22 55f49e493396d14689103f1912cb77fd653461cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
    }
}