zhuangpei-mesbackend/ZR.Service/MES/dev/IService/IDeviceInspectService.cs

32 lines
857 B
C#
Raw Normal View History

2024-05-21 18:58:03 +08:00
using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
2024-06-03 18:26:07 +08:00
using ZR.Model.MES.dev.Dto;
2024-05-27 14:29:14 +08:00
using Microsoft.AspNetCore.Mvc;
2024-05-21 18:58:03 +08:00
namespace ZR.Service.MES.dev.IService
{
/// <summary>
/// 设备检查项service接口
/// </summary>
public interface IDeviceInspectService : IBaseService<DeviceInspect>
{
PagedInfo<DeviceInspectDto> GetList(DeviceInspectQueryDto parm);
2024-05-27 14:29:14 +08:00
PagedInfo<DeviceInspectDto> GetList2(DeviceInspectQueryDto2 parm);
2024-05-21 18:58:03 +08:00
DeviceInspect GetInfo(int Id);
DeviceInspect AddDeviceInspect(DeviceInspect parm);
int UpdateDeviceInspect(DeviceInspect parm);
2024-05-27 16:05:33 +08:00
int AddBindrelative(DeviceInspectQueryDto3 parm,string name);
2024-05-27 14:29:14 +08:00
int RemoveBindrelative(int account_id, int inspect_id);
2024-05-27 16:05:33 +08:00
int SortBindrelative(List<DeviceRelAccountInspect> parm);
2024-05-27 14:29:14 +08:00
2024-05-21 18:58:03 +08:00
}
}