diff --git a/src/main/java/neatlogic/framework/cmdb/dataconversion/SupportDataConversion.java b/src/main/java/neatlogic/framework/cmdb/dataconversion/SupportDataConversion.java new file mode 100644 index 0000000000000000000000000000000000000000..c6b9660278b057d260592e0f0baa80e51bb93e75 --- /dev/null +++ b/src/main/java/neatlogic/framework/cmdb/dataconversion/SupportDataConversion.java @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2024 深圳极向量科技有限公司 All Rights Reserved. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package neatlogic.framework.cmdb.dataconversion; + +import neatlogic.framework.cmdb.dto.transaction.CiEntityTransactionVo; + +import java.util.List; + +/** + * 支持直接数据转换到cmdb功能接口 + */ +public interface SupportDataConversion { + + List getCiEntityTransactionList(Object originalData); +}