wangxinhui
2025-09-11 fb745c842df36edc5101291a7f239c11c97bcc2f
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)
        {
        }
    }
}