dengjunjie
2024-12-16 81cfbb34ad9092b19a2e3692786ee97f3646014b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IInboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Inbound
{
    [Route("api/PurchaseOrder")]
    [ApiController]
    public class PurchaseOrderController : ApiBaseController<IPurchaseOrderService, Dt_PurchaseOrder>
    {
        public PurchaseOrderController(IPurchaseOrderService service) : base(service)
        {
        }
    }
}