Files
shgx_tz_mes_backend_sync/ZR.Service/mes/op/IService/IOperationService.cs

15 lines
448 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
using ZR.Model.MES.op.DTO;
2023-10-11 16:56:25 +08:00
namespace ZR.Service.MES.op.IService
{
2024-06-07 11:04:26 +08:00
public interface IOperationService
2023-10-11 16:56:25 +08:00
{
public List<OpStatisticsDTO> GetAllData(string workshopID);
2023-12-12 22:26:20 +08:00
2024-06-07 11:04:26 +08:00
public (List<QcFqcDTO>, int) GueryQualityStatistics(string workorderid, int pageNum, int pageSize, int year = -1, int week = -1, int date = -1);
2023-12-18 19:56:01 +08:00
public List<DetailsOfDetectionDTO> QueryDetailsOfDetection(string fkWorkorderId, int order);
2023-10-11 16:56:25 +08:00
}
}