Files
shgx_tz_mes_backend_sync/ZR.Service/mes/op/IService/IOperationService.cs
2024-06-07 11:05:58 +08:00

15 lines
448 B
C#

using ZR.Model.MES.op.DTO;
namespace ZR.Service.MES.op.IService
{
public interface IOperationService
{
public List<OpStatisticsDTO> GetAllData(string workshopID);
public (List<QcFqcDTO>, int) GueryQualityStatistics(string workorderid, int pageNum, int pageSize, int year = -1, int week = -1, int date = -1);
public List<DetailsOfDetectionDTO> QueryDetailsOfDetection(string fkWorkorderId, int order);
}
}