package com.landtool.lanbase.modules.sys.service; import java.util.LinkedHashMap; import java.util.List; import com.landtool.lanbase.modules.sys.entity.SysFieldvalue; /** * @author lanbase * @Description: TODO(系统字典字段值) * @date 2018-01-15 16:14:16 */ public interface SysFieldvalueService { List queryListByKey(String key); LinkedHashMap getFieldListByKey(String key); List queryListAll(); LinkedHashMap getDataSourceList(); }