17 lines
348 B
C#
17 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.op.DTO;
|
|
using ZR.Model.MES.op.ZR.Model.mes.md;
|
|
|
|
namespace ZR.Service.MES.op.IService
|
|
{
|
|
public interface IOperationService
|
|
{
|
|
|
|
public List<OpStatisticsDTO> GetAllData(string workshopID);
|
|
}
|
|
}
|