25 lines
629 B
C#
25 lines
629 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.dev.Dto;
|
|
using DOAN.Model.MES.dev;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 设备运行绩效分析service接口
|
|
/// </summary>
|
|
public interface IDevicePerformanceService : IBaseService<DevicePerformance>
|
|
{
|
|
PagedInfo<DevicePerformanceDto> GetList(DevicePerformanceQueryDto parm);
|
|
|
|
DevicePerformance GetInfo(string Id);
|
|
|
|
DevicePerformance AddDevicePerformance(DevicePerformance parm);
|
|
|
|
int UpdateDevicePerformance(DevicePerformance parm);
|
|
|
|
}
|
|
}
|