wangxinhui
2025-05-13 ad4d32dc4e162ba7fb71cd3bc213f1d71c964551
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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();
        }
    }
}