public IHttpActionResult Get(string Id)
        {
            try
            {
                HrDictionary model = bll.GetOne(p => p.DICTIONARYID.Equals(Id));
                if (model != null)
                {
                    HrDictionary father = bll.GetOne(p => p.DICTIONARYID.Equals(model.FatherId));
                    model.FatherId = string.Format("{0}#{1}", father.DictionaryId, father.DictionaryName);
                }

                return(Ok(model));
            }
            catch (Exception ex)
            {
                LogService.WriteErrorLog("DictionaryManageController[Get]", ex.ToString());
                return(BadRequest("异常!"));
            }
        }