Files
kunshan-bzfm-mes-backend/DOAN.Service/MES/Device/IService/IDeviceAccountService.cs
2024-12-10 14:34:13 +08:00

44 lines
1.2 KiB
C#

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