79a9e114fa41e3c911a4bdc9d84f91baee46893a.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package org.jeecg.common.api.desform;
  2. import org.jeecg.common.system.vo.DictModel;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * 表单设计器【System】翻译API接口
  7. *
  8. * @author sunjianlei
  9. */
  10. public interface ISysTranslateAPI {
  11. /**
  12. * 查询分类字典翻译
  13. */
  14. List<String> categoryLoadDictItem(String ids);
  15. /**
  16. * 根据字典code加载字典text
  17. *
  18. * @param dictCode 顺序:tableName,text,code
  19. * @param keys 要查询的key
  20. * @return
  21. */
  22. List<String> dictLoadDictItem(String dictCode, String keys);
  23. /**
  24. * 获取字典数据
  25. *
  26. * @param dictCode 顺序:tableName,text,code
  27. * @param dictCode 要查询的key
  28. * @return
  29. */
  30. List<DictModel> dictGetDictItems(String dictCode);
  31. /**
  32. * 【JSearchSelectTag下拉搜索组件专用接口】
  33. * 大数据量的字典表 走异步加载 即前端输入内容过滤数据
  34. *
  35. * @param dictCode 字典code格式:table,text,code
  36. * @return
  37. */
  38. List<DictModel> dictLoadDict(String dictCode, String keyword, Integer pageSize);
  39. }