package com.bcxin.Infrastructures;

import java.io.Serializable;

public interface DataPersistentInterceptor {
    void before(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames);
}
