package com.sunda.spmsweb.util;

import java.util.List;

public interface ExcelImporter<T> {
    void save(List<T> data);
}