1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.vci.ubcs.code.service;
|
| import org.springframework.stereotype.Service;
| import org.xml.sax.SAXException;
|
| import javax.xml.parsers.ParserConfigurationException;
| import java.io.IOException;
|
| /**
| * 集团属性映射xml配置管理
| * @author ludc
| * @date 2024/1/8 9:39
| */
| public interface IGroupMapAttrXMLService {
|
| String getGroupMapXMLInfo(String xmlName) throws ParserConfigurationException, IOException, SAXException;
|
| }
|
|