wangxinhui
2025-09-06 2b25f973bb6d72ce6971d6f9c3cdccf51b7962ab
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_WMSServer/Controllers/Inbound/PurchaseOrderDetailController.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,22 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IInboundService;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers.Inbound
{
    /// <summary>
    /// BST采购单明细
    /// </summary>
    [Route("api/PurchaseBSTOrderDetail")]
    [ApiController]
    public class PurchaseBSTOrderDetailController : ApiBaseController<IPurchaseBSTOrderDetailService, Dt_PurchaseBSTOrderDetail>
    {
        public PurchaseBSTOrderDetailController(IPurchaseBSTOrderDetailService service) : base(service)
        {
        }
    }
}