|
@@ -34,19 +34,22 @@ namespace Learun.Application.WebApi.Modules |
|
|
{ |
|
|
{ |
|
|
Get["/getpayfeelist"] = GetPayfeeList;// 获取缴费列表 |
|
|
Get["/getpayfeelist"] = GetPayfeeList;// 获取缴费列表 |
|
|
Get["/getpayfeeinfo"] = GetPayfeeInfo;//获取缴费明细 |
|
|
Get["/getpayfeeinfo"] = GetPayfeeInfo;//获取缴费明细 |
|
|
Post["/generateqrcode"] = PayFeeQRCode; |
|
|
|
|
|
|
|
|
Post["/generateqrcode"] = PayFeeQRCode;//生成缴费二维码 |
|
|
|
|
|
Get["/getinvoice"] = GetInvoice;//获取发票 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private StuInfoBasic_PayFeeIBLL stuInfoBasic_PayFeeIBLL = new StuInfoBasic_PayFeeBLL(); |
|
|
private StuInfoBasic_PayFeeIBLL stuInfoBasic_PayFeeIBLL = new StuInfoBasic_PayFeeBLL(); |
|
|
private StuInfoBasicIBLL stuInfoBasicIbll = new StuInfoBasicBLL(); |
|
|
private StuInfoBasicIBLL stuInfoBasicIbll = new StuInfoBasicBLL(); |
|
|
private StuInfoFreshIBLL stuInfoFreshIBLL = new StuInfoFreshBLL(); |
|
|
private StuInfoFreshIBLL stuInfoFreshIBLL = new StuInfoFreshBLL(); |
|
|
private FinaChargesStandardIBLL finaChargesStandardIBLL = new FinaChargesStandardBLL(); |
|
|
private FinaChargesStandardIBLL finaChargesStandardIBLL = new FinaChargesStandardBLL(); |
|
|
|
|
|
|
|
|
|
|
|
public Response GetInvoice(dynamic _) |
|
|
|
|
|
{ |
|
|
|
|
|
string keyValue = Request.Query["keyValue"]; |
|
|
|
|
|
var list = stuInfoFreshIBLL.GetStuEnrollFeeOrder(keyValue, false); |
|
|
|
|
|
return Success(list); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
/// 获取问卷 |
|
|
|
|
|
/// </summary> |
|
|
|
|
|
/// <param name="_"></param> |
|
|
|
|
|
/// <returns></returns> |
|
|
|
|
|
public Response GetPayfeeList(dynamic _) |
|
|
public Response GetPayfeeList(dynamic _) |
|
|
{ |
|
|
{ |
|
|
ReqPageParam parameter = this.GetReqData<ReqPageParam>(); |
|
|
ReqPageParam parameter = this.GetReqData<ReqPageParam>(); |
|
|