设备管理
This commit is contained in:
44
ZR.Service/mes/Device/IService/IDeviceAccountService.cs
Normal file
44
ZR.Service/mes/Device/IService/IDeviceAccountService.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using System.Collections.Generic;
|
||||
using ZR.Model.MES.dev;
|
||||
using ZR.Model.MES.dev.Dto;
|
||||
using Aliyun.OSS;
|
||||
using DOAN.Model;
|
||||
|
||||
namespace ZR.Service.MES.dev.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备台账service接口
|
||||
/// </summary>
|
||||
public interface IDeviceAccountService : IBaseService<DeviceAccount>
|
||||
{
|
||||
PagedInfo<DeviceAccountDto> GetList(DeviceAccountQueryDto parm);
|
||||
|
||||
PagedInfo<DeviceAccountDto> GetList_Route(DeviceAccountQueryDto2 parm);
|
||||
|
||||
|
||||
|
||||
DeviceAccount GetInfo(int Id);
|
||||
|
||||
DeviceAccount AddDeviceAccount(DeviceAccount parm);
|
||||
|
||||
int UpdateDeviceAccount(DeviceAccount parm);
|
||||
List<SelectTreeDto> GetSelectTree(DeviceAccountQueryDto parm);
|
||||
|
||||
int AddRelation(DeviceAccount_routeinspect_Dto parm, string CreatedBy);
|
||||
|
||||
int Remove_relation(string FkRouteInspectionPlanId, int FkDeviceAccountId);
|
||||
|
||||
|
||||
PagedInfo<DeviceAccountDto> GetList_Point(DeviceAccountQueryDto3 parm);
|
||||
|
||||
|
||||
int AddRelationPointAccount(DeviceAccount_pointinspect_Dto parm, string CreatedBy);
|
||||
|
||||
int RemoveRelationPointAccount(string FkPointInspectionPlanId, int FkDeviceAccountId);
|
||||
|
||||
DeviceStatusAnalysisDto GetDeviceStatus(int devicetype_id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user