2024-10-12 16:30:09 +08:00

16 lines
363 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> GetList(QcDefectCollectionQueryDto2 parm);
}
}