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 { /// /// 设备台账service接口 /// public interface IDeviceAccountService : IBaseService { PagedInfo GetList(DeviceAccountQueryDto parm); PagedInfo GetList_Route(DeviceAccountQueryDto2 parm); DeviceAccount GetInfo(int Id); DeviceAccount AddDeviceAccount(DeviceAccount parm); int UpdateDeviceAccount(DeviceAccount parm); List GetSelectTree(DeviceAccountQueryDto parm); } }