using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IOutboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Outbound
|
{
|
/// <summary>
|
/// 老厂生管排程单明细
|
/// </summary>
|
[Route("api/OutSGOrderDetail")]
|
[ApiController]
|
public class OutSGOrderDetailController : ApiBaseController<IOutSGOrderDetailService, Dt_OutSGOrderDetail>
|
{
|
public OutSGOrderDetailController(IOutSGOrderDetailService service) : base(service)
|
{
|
}
|
}
|
}
|