All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codingapi.springboot.framework.domain.event.DomainPersistEvent Maven / Gradle / Ivy

There is a newer version: 3.3.12
Show newest version
package com.codingapi.springboot.framework.domain.event;

import lombok.Getter;

/**
 * 实体持久化事件
 */
@Getter
public class DomainPersistEvent extends DomainEvent {

    public DomainPersistEvent(Object entity) {
        super(entity);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy