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