using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBasicService;
|
using WIDESEA_Model.Models.Outbound;
|
|
namespace WIDESEA_WMSServer.Controllers.Basic
|
{
|
[Route("api/outboundOrde_hty")]
|
[ApiController]
|
public class OutboundOrder_HtyController : ApiBaseController<IOutboundOrder_HtyService, Dt_OutboundOrder_Hty>
|
{
|
public OutboundOrder_HtyController(IOutboundOrder_HtyService service) : base(service)
|
{
|
}
|
}
|
}
|