10 lines
183 B
Java
10 lines
183 B
Java
package seed.common.service;
|
|
|
|
import java.util.List;
|
|
|
|
public interface InnorixFileService {
|
|
|
|
public void innorixFileInsert(List<InnorixFileVO> innorixFileList) throws Exception;
|
|
|
|
}
|