using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
namespace ZR.Service.MES.dev.IService
{
///
/// 设备检查项service接口
///
public interface IDeviceInspectService : IBaseService
{
PagedInfo GetList(DeviceInspectQueryDto parm);
DeviceInspect GetInfo(int Id);
DeviceInspect AddDeviceInspect(DeviceInspect parm);
int UpdateDeviceInspect(DeviceInspect parm);
}
}