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; }