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 OutboundOrderDetail_HtyController : ApiBaseController<IOutboundOrderDetail_HtyService, Dt_OutboundOrderDetail_Hty>
|
{
|
public OutboundOrderDetail_HtyController(IOutboundOrderDetail_HtyService service) : base(service)
|
{
|
}
|
|
}
|
}
|