25 lines
521 B
C#
25 lines
521 B
C#
using System;
|
|
using ZR.Model;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.dev;
|
|
|
|
namespace ZR.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 设备检查项service接口
|
|
/// </summary>
|
|
public interface IDeviceInspectService : IBaseService<DeviceInspect>
|
|
{
|
|
PagedInfo<DeviceInspectDto> GetList(DeviceInspectQueryDto parm);
|
|
|
|
DeviceInspect GetInfo(int Id);
|
|
|
|
DeviceInspect AddDeviceInspect(DeviceInspect parm);
|
|
|
|
int UpdateDeviceInspect(DeviceInspect parm);
|
|
|
|
}
|
|
}
|