/** * 获取指定选项组名称指定子选项key的value展示值 [替换页面中逻辑值为展示值] * * @param optName 选项组名称 * @param optKey 选项key */ public String getOptionValue(String optName, Long optKey) { String optVal = null; if (optKey != null) { optVal = optDicService.getOptionValue(optName, optKey.toString()); } return optVal; }
/** * 获取指定选项组名称指定子选项key的value展示值 [替换页面中逻辑值为展示值] * * @param optName 选项组名称 * @param optKey 选项key */ public String getOptionValue(String optName, Integer optKey) { return optDicService.getOptionValue(optName, optKey.toString()); }
/** * 根据选项字典组名称获取选项字典集合 [一般用于页面下拉select] * * @param optName 选项组名称 * @return */ public List<OptDic> getOptDic(String optName) { return optDicService.selectOption(optName); }
/** * 获取指定选项组名称指定子选项key的value展示值 [替换页面中逻辑值为展示值] * * @param optName 选项组名称 * @param optKey 选项key */ public String getOptionValue(String optName, String optKey) { return optDicService.getOptionValue(optName, optKey); }
/** * 系统参数获取 * * @param paramKey 参数key * @return */ public String getParamValue(String paramKey) { return optDicService.getSysParamValue(paramKey); }