同步操作将从 dotNET China/OpenAuth.Net 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<%--Name: Database Table PropertiesAuthor: yubaoleeDescription: Create a list of properties from a database table--%><%@ CodeTemplate Language="C#" Encoding="utf-8" TargetLanguage="C#" Debug="False" Description="控制器" %><%@ Property Name="ModuleName" Type="String" Category="Context" Description="模块名称" %><%@ Property Name="NeedViewModel" Type="Boolean" Category="Context" Default="False" Description="是否需要ViewModel" %><%@ Map Name="CSharpAlias" Src="System-CSharpAlias" Description="System to C# Type Map" %><%@ Assembly Name="SchemaExplorer" %><%@ Import Namespace="SchemaExplorer" %><script runat="template">public String GetModelName(){if(NeedViewModel)return ModuleName +"View";elsereturn ModuleName;}</script>using System;using System.Web.Mvc;using Infrastructure;using OpenAuth.App;<%if(NeedViewModel){ %>using OpenAuth.App.ViewModel;<%} %>using OpenAuth.Domain;namespace OpenAuth.Mvc.Controllers{public class <%=ModuleName%>ManagerController : BaseController{private <%=ModuleName%>ManagerApp _app;public <%=ModuleName%>ManagerController(){_app = AutofacExt.GetFromFac<<%=ModuleName%>ManagerApp>();}//// GET: /UserManager/public ActionResult Index(){return View();}public ActionResult Add(int id = 0){return View(_app.Find(id));}//添加或修改<%=ModuleName %>[HttpPost]public string Add(<%=GetModelName()%> model){try{_app.AddOrUpdate(model);}catch (Exception ex){BjuiResponse.statusCode = "300";BjuiResponse.message = ex.Message;}return JsonHelper.Instance.Serialize(BjuiResponse);}/// <summary>/// 加载节点下面的所有<%=ModuleName %>s/// </summary>public string Load(int parentId, int pageCurrent = 1, int pageSize = 30){return JsonHelper.Instance.Serialize(_app.Load(parentId, pageCurrent, pageSize));}public string LoadForTree(){var models = _app.LoadAll();//添加根节点models.Add(new <%=ModuleName %>{Id = 0,ParentId = -1,Name = "根结点",CascadeId = "0"});return JsonHelper.Instance.Serialize(models);}public string Delete(int Id){try{_app.Delete(Id);}catch (Exception e){BjuiResponse.statusCode = "300";BjuiResponse.message = e.Message;}return JsonHelper.Instance.Serialize(BjuiResponse);}}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。