2016-04-17 23:16:58 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using Infrastructure;
|
|
|
|
|
using OpenAuth.App;
|
|
|
|
|
using OpenAuth.Mvc.Models;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class RelevanceManagerController : BaseController
|
|
|
|
|
{
|
|
|
|
|
private RevelanceManagerApp _app;
|
|
|
|
|
|
|
|
|
|
public RelevanceManagerController()
|
|
|
|
|
{
|
|
|
|
|
_app = AutofacExt.GetFromFac<RevelanceManagerApp>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpPost]
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public string Assign(string type, Guid firstId, Guid[] secIds)
|
2016-04-17 23:16:58 +08:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-09-02 18:05:17 +08:00
|
|
|
|
_app.Assign(type, firstId, secIds);
|
2016-04-17 23:16:58 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
BjuiResponse.statusCode = "300";
|
|
|
|
|
BjuiResponse.message = ex.Message;
|
|
|
|
|
}
|
|
|
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public string UnAssign(string type, Guid firstId, Guid[] secIds)
|
2016-04-17 23:16:58 +08:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-09-02 18:05:17 +08:00
|
|
|
|
_app.UnAssign(type, firstId, secIds);
|
2016-04-17 23:16:58 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
BjuiResponse.statusCode = "300";
|
|
|
|
|
BjuiResponse.message = ex.Message;
|
|
|
|
|
}
|
|
|
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|