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