28 lines
723 B
C#
28 lines
723 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);
|
|
}
|
|
}
|