设备管理

This commit is contained in:
qianhao.xu
2024-12-10 14:34:13 +08:00
parent d77e2953b7
commit ca725130e1
60 changed files with 7115 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
using System;
using DOAN.Model;
using DOAN.Model.Dto;
using System.Collections.Generic;
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
using Aliyun.OSS;
namespace DOAN.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);
}
}