提交
This commit is contained in:
25
DOAN.Service/MES/Base/IService/IBaseDeviceService.cs
Normal file
25
DOAN.Service/MES/Base/IService/IBaseDeviceService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.Dto;
|
||||
using DOAN.Model.MES.base_;
|
||||
using DOAN.Model.MES.base_.Dto;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DOAN.Service.MES.base_.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备信息service接口
|
||||
/// </summary>
|
||||
public interface IBaseDeviceService : IBaseService<BaseDevice>
|
||||
{
|
||||
PagedInfo<BaseDeviceDto> GetList(BaseDeviceQueryDto parm);
|
||||
List<BaseDeviceDto> GetList_nobind(int id);
|
||||
|
||||
BaseDevice GetInfo(int Id);
|
||||
|
||||
BaseDevice AddBaseDevice(BaseDevice parm);
|
||||
|
||||
int UpdateBaseDevice(BaseDevice parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user