com.codingapi.springboot.framework.domain.event.DomainPersistEvent 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
package com.codingapi.springboot.framework.domain.event;
import lombok.Getter;
/**
* 实体持久化事件
*/
@Getter
public class DomainPersistEvent extends DomainEvent {
public DomainPersistEvent(Object entity) {
super(entity);
}
}