44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
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;
|
|
|
|
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);
|
|
}
|
|
}
|