zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceTaskExecuteService.cs

40 lines
1019 B
C#
Raw Normal View History

2024-05-31 10:17:33 +08:00
using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using ZR.Model.MES.dev.Dto;
2024-06-03 18:26:07 +08:00
namespace ZR.Service.MES.dev.IService
2024-05-31 10:17:33 +08:00
{
/// <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);
2024-06-01 11:20:28 +08:00
int ScanEveryTask();
int ExecutionTask_point(string id);
2024-06-03 15:45:21 +08:00
List<DeviceAccount> AchieveTaskbindDevice(int id);
List<DeviceInspect> AchieveDevicebindInspect(int fk_device_id);
List<DeviceFormConfig> AchieveInspectbindForm(string fk_device_inspect_id);
2024-05-31 10:17:33 +08:00
}
}