zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceAccountService.cs

44 lines
1.2 KiB
C#
Raw Normal View History

2024-05-20 19:13:55 +08:00
using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
using DOAN.Model.Dto;
2024-05-20 19:13:55 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
2024-05-29 19:09:03 +08:00
using Aliyun.OSS;
2024-05-20 19:13:55 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.MES.dev.IService
2024-05-20 19:13:55 +08:00
{
/// <summary>
/// 设备台账service接口
/// </summary>
public interface IDeviceAccountService : IBaseService<DeviceAccount>
{
PagedInfo<DeviceAccountDto> GetList(DeviceAccountQueryDto parm);
2024-05-28 17:23:55 +08:00
PagedInfo<DeviceAccountDto> GetList_Route(DeviceAccountQueryDto2 parm);
2024-05-30 14:22:25 +08:00
2024-05-28 17:23:55 +08:00
2024-05-20 19:13:55 +08:00
DeviceAccount GetInfo(int Id);
DeviceAccount AddDeviceAccount(DeviceAccount parm);
int UpdateDeviceAccount(DeviceAccount parm);
2024-05-28 17:21:58 +08:00
List<SelectTreeDto> GetSelectTree(DeviceAccountQueryDto parm);
2024-05-20 19:13:55 +08:00
2024-05-29 19:09:03 +08:00
int AddRelation(DeviceAccount_routeinspect_Dto parm, string CreatedBy);
int Remove_relation(string FkRouteInspectionPlanId, int FkDeviceAccountId);
2024-05-30 14:22:25 +08:00
PagedInfo<DeviceAccountDto> GetList_Point(DeviceAccountQueryDto3 parm);
int AddRelationPointAccount(DeviceAccount_pointinspect_Dto parm, string CreatedBy);
int RemoveRelationPointAccount(string FkPointInspectionPlanId, int FkDeviceAccountId);
2024-06-12 17:41:30 +08:00
DeviceStatusAnalysisDto GetDeviceStatus(int devicetype_id);
2024-05-20 19:13:55 +08:00
}
}