27 lines
619 B
C#
27 lines
619 B
C#
using DOAN.Model;
|
|
using DOAN.Model.MES.dev;
|
|
using DOAN.Model.MES.dev.Dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 设备保全率service接口
|
|
/// </summary>
|
|
public interface IDeviceUptimeService : IBaseService<DeviceUptime>
|
|
{
|
|
PagedInfo<DeviceUptimeDto> GetList(DeviceUptimeQueryDto parm);
|
|
|
|
DeviceUptime GetInfo(string Id);
|
|
|
|
DeviceUptime AddDeviceUptime(DeviceUptime parm);
|
|
|
|
int UpdateDeviceUptime(DeviceUptime parm);
|
|
|
|
}
|
|
}
|