diff --git a/Base/Controller/ACommon.cs b/Base/Controller/ACommon.cs
index 6564336..6cc0d85 100644
--- a/Base/Controller/ACommon.cs
+++ b/Base/Controller/ACommon.cs
@@ -34,26 +34,53 @@ namespace NP.Base.Controllers
filterContext.Result = new RedirectResult("/Account/Error?_code=" + NP.Base.ENUM.JSONCode.Error + "&_msg=알수없는오류");
}
}
+ ///
+ /// 권한설정
+ ///
+ ///
+ ///
[HttpPost]
public JsonResult SaveUserAuth(String authname)
{
return JsonOK(Dao.Save("sys.userauth.save", new Hashtable() { { "authname",authname} ,{"uno",SUserInfo.UserNo },{ "uip",GetUserIP()} }));
}
+ ///
+ /// 권한이름저장
+ ///
+ ///
+ ///
+ ///
[HttpPost]
public JsonResult SaveAuthName(String authname,int usertype)
{
return JsonOK(Dao.Save("sys.authname.save", new Hashtable() { { "authname", authname }, { "usertype",usertype},{ "uno", SUserInfo.UserNo }, { "uip", GetUserIP() } }));
}
+ ///
+ /// 권한삭제
+ ///
+ ///
+ ///
+ ///
[HttpPost]
public JsonResult DelUserAuth(int usertype,String authname)
{
return JsonOK(Dao.Save("sys.userauth.del", new Hashtable() {{ "usertype", usertype },{ "authname",authname}, { "uno", SUserInfo.UserNo }, { "uip", GetUserIP() } }));
}
+ ///
+ /// 관리자메뉴 불러오기
+ ///
+ ///
+ ///
[HttpPost]
public JsonResult GetMenu(int mno)
{
return JsonBack