using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IInboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Inbound
|
{
|
[Route("api/InboundOrder_Hty")]
|
[ApiController]
|
public class InboundOrder_HtyController : ApiBaseController<IInboundOrder_HtyService, Dt_InboundOrder_Hty>
|
{
|
public InboundOrder_HtyController(IInboundOrder_HtyService service) : base(service)
|
{
|
}
|
}
|
}
|