zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceInspectService.cs
qianhao.xu b59a522e19 提交
2024-05-21 18:58:03 +08:00

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);
}
}