Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 33973 |
tejus.loha |
1 |
package com.spice.profitmandi.service.reportico;
|
|
|
2 |
|
|
|
3 |
import org.springframework.stereotype.Service;
|
|
|
4 |
|
|
|
5 |
import java.util.List;
|
|
|
6 |
import java.util.Map;
|
|
|
7 |
|
|
|
8 |
@Service
|
|
|
9 |
public interface ReporticoService {
|
|
|
10 |
Map<String, Object> readXMLFile(String path) throws Exception;
|
|
|
11 |
List<List<String>> executeCustomQuery(String query) throws Exception;
|
|
|
12 |
}
|