zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceTaskExecuteService.cs
qianhao.xu 90bec23fea 提交
2024-06-01 11:20:28 +08:00

32 lines
798 B
C#

using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using ZR.Model.MES.dev.Dto;
namespace ZR.Service.Dev.IDevService
{
/// <summary>
/// 任务执行service接口
/// </summary>
public interface IDeviceTaskExecuteService : IBaseService<DeviceTaskExecute>
{
PagedInfo<DeviceTaskExecuteDto> GetList(DeviceTaskExecuteQueryDto parm);
DeviceTaskExecute GetInfo(int Id);
DeviceTaskExecute AddDeviceTaskExecute(DeviceTaskExecute parm);
int UpdateDeviceTaskExecute(DeviceTaskExecute parm);
bool TruncateDeviceTaskExecute();
(string, object, object) ImportDeviceTaskExecute(List<DeviceTaskExecute> list);
int ScanEveryTask();
int ExecutionTask_point(string id);
}
}