wangxinhui
6 天以前 9ec715d2deb18a269dd49c48da91a36632d08c81
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
30
31
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.Attributes;
using WIDESEA_Core.BaseController;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Outbound
{
    /// <summary>
    /// MES成品提库单
    /// </summary>
    [Route("api/MesRworkOutboundOrder")]
    [ApiController]
    public class MesRworkOutboundOrderController : ApiBaseController<IMesRworkOutboundOrderService, Dt_MesRworkOutboundOrder>
    {
        public MesRworkOutboundOrderController(IMesRworkOutboundOrderService service) : base(service)
        {
        }
        /// <summary>
        /// 成品MES提库出库完后一包一包拣选
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("ProductDeliveryOrder"), AllowAnonymous]
        public WebResponseContent MesRworkOutPick(int OrderId, string InrPKCode, int Count = 0)
        {
            return Service.MesRworkOutPick(OrderId, InrPKCode, Count);
        }
    }
}