wangxinhui
昨天 526b70eecc5dac5aea91bfffbe0b98118f25827f
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
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_Core;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Outbound
{
    /// <summary>
    /// 成品出库详情
    /// </summary>
    [Route("api/OutProStockInfo")]
    [ApiController]
    public class OutProStockInfoController : ApiBaseController<IOutProStockInfoService, Dt_OutProStockInfo>
    {
        public OutProStockInfoController(IOutProStockInfoService service) : base(service)
        {
        }
 
        [HttpPost, HttpGet, Route("GetByOrderDetailId"), AllowAnonymous]
        public List<Dt_OutProStockInfo> GetByOrderDetailId(int orderDetailId)
        {
            return Service.GetByOrderDetailId(orderDetailId, null);
        }
    }
}