32 lines
865 B
C#
32 lines
865 B
C#
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
|
|
{
|
|
/// <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);
|
|
|
|
}
|
|
}
|