zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceDowntimeRecordService.cs
qianhao.xu 96ab32b77b 1
2024-12-30 17:19:33 +08:00

26 lines
683 B
C#

using System;
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
using System.Collections.Generic;
using DOAN.Model;
namespace DOAN.Service.MES.dev.IService
{
/// <summary>
/// 设备停机时间service接口
/// </summary>
public interface IDeviceDowntimeRecordService : IBaseService<DeviceDowntimeRecord>
{
List<DeviceAccount> GetDevices(string query);
PagedInfo<DeviceDowntimeRecordDto> GetList(DeviceDowntimeRecordQueryDto parm);
DeviceDowntimeRecord GetInfo(int Id);
DeviceDowntimeRecord AddDeviceDowntimeRecord(DeviceDowntimeRecord parm);
int UpdateDeviceDowntimeRecord(DeviceDowntimeRecord parm);
}
}