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

56 lines
1.6 KiB
C#
Raw Normal View History

2024-05-31 10:17:33 +08:00
using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
2024-05-31 10:17:33 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
2024-06-04 11:25:17 +08:00
using Microsoft.AspNetCore.Mvc;
2024-05-31 10:17:33 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.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);
2024-06-04 09:00:11 +08:00
DeviceTaskExecute GetInfo(string Id);
2024-05-31 10:17:33 +08:00
DeviceTaskExecute AddDeviceTaskExecute(DeviceTaskExecute parm);
int UpdateDeviceTaskExecute(DeviceTaskExecute parm);
2024-06-24 17:09:07 +08:00
int Update_task_status(DeviceTaskExecuteQueryDto2 parm);
2024-05-31 10:17:33 +08:00
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
2024-06-04 09:00:11 +08:00
List<DeviceAccount> AchieveTaskbindDevice(string id);
2024-06-03 15:45:21 +08:00
2024-08-06 13:15:27 +08:00
List<DeviceInspect> AchieveDevicebindInspect(int fk_device_id, string fkPlanId, int planType);
2024-06-03 15:45:21 +08:00
2024-06-04 11:25:17 +08:00
List<DeviceFormConfig> AchieveInspectbindForm(int fk_device_inspect_id);
2024-06-05 15:40:21 +08:00
2024-06-05 15:02:11 +08:00
List<DeviceTaskExecuteResult1_result> AchieveFormResult2(DeviceTaskExecuteResult1QueryDto_TaskExecute query);
2024-06-03 15:45:21 +08:00
2024-06-11 13:35:00 +08:00
int UpdateFormResult(DeviceTaskExecuteResultDto result);
2024-06-05 13:24:53 +08:00
2024-07-03 20:13:57 +08:00
int AddDeviceTaskExecute(string Id,string name);
/// <summary>
/// 增加任务完成时间
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
int AddTaskFinallyTime(string Id);
2024-05-31 10:17:33 +08:00
}
}