using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; using WIDESEA_ISquareCabinServices; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers { [Route("api/DeliveryOrderDetailHty")] [ApiController] public class DeliveryOrderDetailHtyController : ApiBaseController { public DeliveryOrderDetailHtyController(IDeliveryOrderDetailServices service) : base(service) { } } }