Files
shgx_tz_mes_backend_sync/ZR.Service/mes/Device/IService/IDeviceInspectService.cs
gcw_MV9p2JJN 308ca6df79 设备管理
2025-09-23 15:11:18 +08:00

32 lines
857 B
C#

using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using ZR.Model.MES.dev.Dto;
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,string name);
int RemoveBindrelative(int account_id, int inspect_id);
int SortBindrelative(List<DeviceRelAccountInspect> parm);
}
}