using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IOutboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Outbound
|
{
|
[Route("api/OutboundOrderDetail_Hty")]
|
[ApiController]
|
public class OutboundOrderDetailHtyController : ApiBaseController<IOutboundOrderDetailHtyService, Dt_OutboundOrderDetail_Hty>
|
{
|
public OutboundOrderDetailHtyController(IOutboundOrderDetailHtyService service) : base(service)
|
{
|
}
|
}
|
}
|