2024-11-11 11:29:32 +08:00
|
|
|
using DOAN.Model.MES.bigscreen.Dto;
|
|
|
|
|
using DOAN.Model.MES.dev;
|
|
|
|
|
using DOAN.Model.mes.echarts;
|
2024-11-11 14:13:55 +08:00
|
|
|
using DOAN.Model.MES.product;
|
2024-11-11 11:29:32 +08:00
|
|
|
|
|
|
|
|
namespace DOAN.Service.MES.bigScreen.IService;
|
|
|
|
|
|
2024-11-11 14:13:55 +08:00
|
|
|
public interface IProductBigScreenService : IBaseService<ProWorkorder>
|
2024-11-11 11:29:32 +08:00
|
|
|
{
|
|
|
|
|
ProductBigScreenMoudle01Dto GetMoudle01();
|
|
|
|
|
|
|
|
|
|
EchartsOptions GetMoudle02();
|
|
|
|
|
EchartsOptions GetMoudle03();
|
2024-11-11 14:13:55 +08:00
|
|
|
EchartsOptions GetMoudle04();
|
|
|
|
|
EchartsOptions GetMoudle05();
|
|
|
|
|
|
|
|
|
|
List<WorkOrderBigScreenDto> GetMoudle06();
|
|
|
|
|
|
|
|
|
|
List<ProWorkorderUpdateLog> GetMoudle07();
|
|
|
|
|
|
|
|
|
|
List<WorkOrderBigScreenDto> GetMoudle08();
|
2024-11-11 11:29:32 +08:00
|
|
|
}
|