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 { /// /// 任务执行service接口 /// public interface IDeviceTaskExecuteService : IBaseService { PagedInfo GetList(DeviceTaskExecuteQueryDto parm); DeviceTaskExecute GetInfo(int Id); DeviceTaskExecute AddDeviceTaskExecute(DeviceTaskExecute parm); int UpdateDeviceTaskExecute(DeviceTaskExecute parm); bool TruncateDeviceTaskExecute(); (string, object, object) ImportDeviceTaskExecute(List list); int ScanEveryTask(); int ExecutionTask_point(string id); List AchieveTaskbindDevice(int id); List AchieveDevicebindInspect(int fk_device_id); List AchieveInspectbindForm(string fk_device_inspect_id); } }