1
647556386
2025-04-17 a95a257a702360e7632b5daeb5b554163382720c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IInboundService;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Inbound
{
    /// <summary>
    /// PP仓小卷MES出库单
    /// </summary>
    [Route("api/mesPPBackInboundOrder")]
    [ApiController]
    public class MesPPBackInboundOrderController : ApiBaseController<IMesPPBackInboundOrderService, Dt_MesPPBackInboundOrder>
    {
        public MesPPBackInboundOrderController(IMesPPBackInboundOrderService service) : base(service)
        {
 
        } 
    }
}