设备管理
This commit is contained in:
31
ZR.Service/mes/Device/IService/IDeviceInspectService.cs
Normal file
31
ZR.Service/mes/Device/IService/IDeviceInspectService.cs
Normal 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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user