30 lines
735 B
C#
30 lines
735 B
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;
|
|
|
|
namespace ZR.Service.Business.IBusinessService
|
|
{
|
|
/// <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);
|
|
|
|
}
|
|
}
|