20 lines
454 B
C#
20 lines
454 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using ZR.Model.MES.qc.DTO;
|
|
using ZR.Service.mes.qu.IService;
|
|
|
|
namespace ZR.Admin.WebApi.Controllers.mes.qu
|
|
{
|
|
[Route("mes/qc/FQC/DefectReport")]
|
|
public class DefectReportController : BaseController
|
|
{
|
|
private readonly IQcRoughService quRoughService;
|
|
|
|
public DefectReportController(IQcRoughService quRoughService)
|
|
{
|
|
this.quRoughService = quRoughService;
|
|
}
|
|
|
|
|
|
}
|
|
}
|