using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WIDESEA_Common; using WIDESEA_Core.BaseController; using WIDESEA_Core; using WIDESEA_IOutboundService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Outbound { [Route("api/OutboundOrder_Hty")] [ApiController] public class OutboundOrder_HtyController : ApiBaseController { public OutboundOrder_HtyController(IOutboundOrder_HtyService service) : base(service) { } } }