2024-11-04 15:35:15 +08:00

18 lines
472 B
C#

using DOAN.Model.MES.quality.IPQC.Dto;
using DOAN.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.quality.IQC.IService
{
public interface IQcReportService
{
PagedInfo<QcDefectCollectionDto> GetLossList(QcDefectCollectionQueryDto2 parm);
PagedInfo<QcDefectCollectionDto> GetCompensationList(QcDefectCollectionQueryDto2 parm);
}
}