using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IOutboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Outbound
|
{
|
/// <summary>
|
/// 成品报废单明细
|
/// </summary>
|
[Route("api/ErpProScrapSheetDetail")]
|
[ApiController]
|
public class ErpProScrapSheetDetailController : ApiBaseController<IErpProScrapSheetDetailService, Dt_ErpProScrapSheetDetail>
|
{
|
public ErpProScrapSheetDetailController(IErpProScrapSheetDetailService service) : base(service)
|
{
|
|
}
|
}
|
}
|