public HttpResponseMessage GetDictionarysByType(string groupKey) { var list = _dataDictionaryService.GetDictionarysByKey(groupKey).Select(s => new { label = s.SingleOptionValue.ToString(), value = s.SingleOptionLabel.ToString() }).OrderBy(s => s.value); return(toJson(list, OperatingState.Success, "获取成功")); }