zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceInspectService.cs
qianhao.xu 1112f620aa 接口
2024-05-27 14:30:24 +08:00

27 lines
597 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);
PagedInfo<DeviceInspectDto> GetList2(DeviceInspectQueryDto2 parm);
DeviceInspect GetInfo(int Id);
DeviceInspect AddDeviceInspect(DeviceInspect parm);
int UpdateDeviceInspect(DeviceInspect parm);
}
}