using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IInboundService;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers.Inbound
{
///
/// Mes成品入库明细
///
[Route("api/ProInStatistics")]
[ApiController]
public class ProInStatisticsController : ApiBaseController
{
public ProInStatisticsController(IProInStatisticsService service) : base(service)
{
}
[HttpGet,HttpPost,Route("GetMonthProductions")]
public WebResponseContent GetMonthProductions()
{
return Service.GetMonthProductions();
}
}
}