设备管理

This commit is contained in:
gcw_MV9p2JJN
2025-09-23 15:11:18 +08:00
parent 657d1b7ab6
commit 308ca6df79
66 changed files with 7276 additions and 17 deletions

View 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);
}
}