雷神教育集团
2026-03-05 6785e0dd785b9f5f3a80b55b179e48d8f0b5e3ef
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/PurchaseBSTOrderDetail")]
    [ApiController]
    public class PurchaseBSTOrderDetailController : ApiBaseController<IPurchaseBSTOrderDetailService, Dt_PurchaseBSTOrderDetail>
    {
        public PurchaseBSTOrderDetailController(IPurchaseBSTOrderDetailService service) : base(service)
        {
        }
    }
}