|
|
@@ -27,7 +27,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
|
|
|
[Authorize]
|
|
|
public JsonResult AgreementInfoList(string value)
|
|
|
{
|
|
|
- value = PublicFunction.DesDecrypt(value); ;
|
|
|
+ value = PublicFunction.DesDecrypt(value);
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
Dictionary<string, object> Other = new Dictionary<string, object>();
|
|
|
List<Dictionary<string, object>> dataList = AgreementInfoListDo(value, out Other);
|
|
|
@@ -63,7 +63,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
|
|
|
[Authorize]
|
|
|
public JsonResult AddAgreementInfo(string value)
|
|
|
{
|
|
|
- value = PublicFunction.DesDecrypt(value); ;
|
|
|
+ value = PublicFunction.DesDecrypt(value);
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
AppResultJson result = AddAgreementInfoDo(value);
|
|
|
return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
@@ -96,7 +96,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
|
|
|
[Authorize]
|
|
|
public JsonResult EditAgreementInfo(string value)
|
|
|
{
|
|
|
- value = PublicFunction.DesDecrypt(value); ;
|
|
|
+ value = PublicFunction.DesDecrypt(value);
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
AppResultJson result = EditAgreementInfoDo(value);
|
|
|
return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
@@ -133,7 +133,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
|
|
|
[Authorize]
|
|
|
public JsonResult DeleteAgreementInfo(string value)
|
|
|
{
|
|
|
- value = PublicFunction.DesDecrypt(value); ;
|
|
|
+ value = PublicFunction.DesDecrypt(value);
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
AppResultJson result = DeleteAgreementInfoDo(value);
|
|
|
return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|