zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceInspectService.cs
qianhao.xu 758aab0548 接口
2024-05-27 15:33:18 +08:00

31 lines
752 B
C#

using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using Microsoft.AspNetCore.Mvc;
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);
int AddBindrelative(DeviceInspectQueryDto3 parm);
int RemoveBindrelative(int account_id, int inspect_id);
}
}