You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
990 B
29 lines
990 B
3 years ago
|
using BBWY.Server.Business;
|
||
|
using BBWY.Server.Model.Dto;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BBWY.Server.API.Controllers
|
||
|
{
|
||
|
public class BillCorrectionController : BaseApiController
|
||
|
{
|
||
|
private BillCorrectionBusiness billCorrectionBusiness;
|
||
|
public BillCorrectionController(IHttpContextAccessor httpContextAccessor, BillCorrectionBusiness billCorrectionBusiness) : base(httpContextAccessor)
|
||
|
{
|
||
|
this.billCorrectionBusiness = billCorrectionBusiness;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取待矫正费用订单
|
||
|
/// </summary>
|
||
|
/// <param name="request"></param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost]
|
||
|
public IList<BillCorrectionOrderResponse> GetBillCorrectionOrderList([FromBody] QueryBillCorrectionOrderRequest request)
|
||
|
{
|
||
|
return billCorrectionBusiness.GetBillCorrectionOrderList(request);
|
||
|
}
|
||
|
}
|
||
|
}
|