ludc
2024-09-12 aed7f0e9be4e88a4ed632f9ca7aca05fa1e7f6b8
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsEnumServiceI.java
@@ -11,6 +11,7 @@
import com.vci.pagemodel.OsEnumVO;
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
@@ -109,9 +110,10 @@
    * 导出枚举类型
    * @param exportFileName 导出的文件名
    * @param enumNames 需要导出的枚举名称
    * @param flag 控制导出的列名是否和导入模板一致
    * @return
    */
   String exportEnumTypes(String exportFileName,String enumNames) throws PLException;
   String exportEnumTypes(String exportFileName,String enumNames,boolean flag/*控制导出的列名是否和导入模板一致*/) throws PLException;
   /**
    * 导入枚举
@@ -203,4 +205,12 @@
    * @return 枚举选项
    */
   DataGrid<OsEnumItemVO> gridEnumItemByOid(String pkEnum);
   /**
    * 根据枚举类型查询枚举:枚举名 , 枚举
    * @param enumType:String, Integer
    * @return
    */
   List<Map<String,List<String>>> getEnumMapByType(String enumType);
}