40 lines
1018 B
C#
40 lines
1018 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);
|
|
|
|
|
|
List<DeviceAccount> AchieveTaskbindDevice(int id);
|
|
|
|
List<DeviceInspect> AchieveDevicebindInspect(int fk_device_id);
|
|
|
|
List<DeviceFormConfig> AchieveInspectbindForm(string fk_device_inspect_id);
|
|
|
|
}
|
|
}
|