wangxinhui
2025-09-06 1f121db427cc068eee97b699c410d1b5f320e867
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
        {
        }
    }
}