ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,19 @@ using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_IInboundService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Inbound { /// <summary> /// å ¥åºå /// </summary> [Route("api/InboundOrder")] [ApiController] public class InboundOrderController : ApiBaseController<IInboundOrderService, Dt_InboundOrder> { public InboundOrderController(IInboundOrderService service) : base(service) { } } }