public ActionResult GetSubjectCategoryBalanceDirection(int id)
 {
     var result = new SubjectCategoryService().GetById(id);
     return Json(new AjaxResult("查询成功", AjaxResultType.Success,result.BalanceDirection));
 }
 public ActionResult GetComboboxList()
 {
     var result = new SubjectCategoryService().GetComboboxList();
     return Json(result);
 }