Browse Source

经费获取审核数据接口

新疆警官学校中职
ndbs 2 years ago
parent
commit
98de29b193
1 changed files with 20 additions and 1 deletions
  1. +20
    -1
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs

+ 20
- 1
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs View File

@@ -33,6 +33,7 @@ namespace Learun.Application.WebApi
Post["/delete"] = DeleteForm;
Post["/save"] = SaveForm;
Post["/submit"] = Submit;
Get["/shList"] = GetshList;
}
#region 获取数据

@@ -71,7 +72,7 @@ namespace Learun.Application.WebApi
};
return Success(jsonData);
}
/// <summary>
/// 获取申请单号
/// <summary>
@@ -85,6 +86,24 @@ namespace Learun.Application.WebApi
};
return Success(jsonData);
}

/// <summary>
/// 获取页面显示列表数据
/// <summary>
/// <param name="_"></param>
/// <returns></returns>
public Response GetshList(dynamic _)
{
FundsApplyEntity parameter = this.GetReqData<FundsApplyEntity>();
var FundsApplyData = fundsApplyIBLL.GetEntityByProcessId(parameter.ProcessId);
var FundsApplyDetailData = fundsApplyDetailIBLL.GetListByApplyId(parameter.Id);
var jsonData = new
{
FundsApply = FundsApplyData,
FundsApplyDetail = FundsApplyDetailData,
};
return Success(jsonData);
}
#endregion

#region 提交数据


Loading…
Cancel
Save