wangxinhui
昨天 9ce6731460179c71f0f2c636b2a1598324d5194e
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_WMSServer/Controllers/Inbound/PurchaseOrderController.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/PurchaseBSTOrder")]
    [ApiController]
    public class PurchaseBSTOrderController : ApiBaseController<IPurchaseBSTOrderService, Dt_PurchaseBSTOrder>
    {
        public PurchaseBSTOrderController(IPurchaseBSTOrderService service) : base(service)
        {
        }
    }
}