com.codingapi.springboot.framework.domain.event.DomainCreateEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
The newest version!
package com.codingapi.springboot.framework.domain.event;
import lombok.Getter;
/**
* 实体创建事件
*/
@Getter
public class DomainCreateEvent extends DomainEvent {
public DomainCreateEvent(Object entity) {
super(entity);
}
}