2024-06-07 11:04:26 +08:00
|
|
|
|
using ZR.Model.MES.qc.DTO;
|
2023-11-21 19:01:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.mes.qu.IService
|
|
|
|
|
|
{
|
2023-11-24 20:40:45 +08:00
|
|
|
|
public interface IQcRoughService
|
2023-11-21 19:01:41 +08:00
|
|
|
|
{
|
2023-11-27 16:28:16 +08:00
|
|
|
|
public (List<Mr_QuRoughDTO>, int) GetStatisticslist(int pageNum, int pageSize, int year, int week, int date, int isSchedule);
|
2024-06-07 11:04:26 +08:00
|
|
|
|
public int UpdateStatisticsTable(string id, int actualNumber, int randomRate, int ngs, int oks, decimal oksRatio, int Isqualified);
|
2023-11-21 19:01:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|