using System;
using DOAN.Model;
using System.Collections.Generic;
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
using Microsoft.AspNetCore.Mvc;
namespace DOAN.Service.MES.dev.IService
{
///
/// 设备检查项service接口
///
public interface IDeviceInspectService : IBaseService
{
PagedInfo GetList(DeviceInspectQueryDto parm);
PagedInfo 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 parm);
}
}