设备管理

This commit is contained in:
gcw_MV9p2JJN
2025-09-23 15:11:18 +08:00
parent 657d1b7ab6
commit 308ca6df79
66 changed files with 7276 additions and 17 deletions

View File

@@ -0,0 +1,31 @@
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);
}
}