heshaofeng
19 小时以前 673b5a596f611099eaacc310f6e7def0e022daca
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
26
27
28
29
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IStockService;
using WIDESEA_Model.Models;
using WIDESEA_StockService;
 
namespace WIDESEA_WMSServer.Controllers.Stock
{
    [ApiController]
    [Route("api/[controller]")]
    [Authorize]
    public class PlasticContainerLedgerController : ApiBaseController<IPlasticContainerLedgerService,Dt_PlasticContainerLedger>
    {
        private readonly IPlasticContainerLedgerService _service;
 
        public PlasticContainerLedgerController(IPlasticContainerLedgerService service) : base(service)
        {
            _service = service;
        }
 
        [HttpPost, Route("GlueLineLedgerSummary"), AllowAnonymous]
        public WebResponseContent GlueLineLedgerSummary(string supplyCode)
        {
            return _service.GlueLineLedgerSummary(supplyCode);
        }
    }
}