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

32 lines
865 B
C#
Raw Normal View History

2024-05-21 18:58:03 +08:00
using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
2024-05-21 18:58:03 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
2024-05-27 14:29:14 +08:00
using Microsoft.AspNetCore.Mvc;
2024-05-21 18:58:03 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.MES.dev.IService
2024-05-21 18:58:03 +08:00
{
/// <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
}
}