com.arextest.storage.service.config.ConfigurableHandler Maven / Gradle / Ivy
package com.arextest.storage.service.config;
import java.util.List;
/**
* @author jmo
* @since 2022/1/22
*/
public interface ConfigurableHandler extends ViewHandler {
boolean insert(T configuration);
boolean remove(T configuration);
boolean insertList(List configurationList);
boolean removeList(List configurationList);
boolean update(T configuration);
}