设备管理
This commit is contained in:
23
DOAN.Service/MES/Device/IService/IDeviceFormConfigService.cs
Normal file
23
DOAN.Service/MES/Device/IService/IDeviceFormConfigService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using DOAN.Model.MES.dev;
|
||||
using DOAN.Model.MES.dev.Dto;
|
||||
using System.Collections.Generic;
|
||||
using DOAN.Model;
|
||||
|
||||
namespace DOAN.Service.MES.dev.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备检查项表单配置表service接口
|
||||
/// </summary>
|
||||
public interface IDeviceFormConfigService : IBaseService<DeviceFormConfig>
|
||||
{
|
||||
PagedInfo<DeviceFormConfigDto> GetList(DeviceFormConfigQueryDto parm);
|
||||
|
||||
DeviceFormConfig GetInfo(string Id);
|
||||
|
||||
DeviceFormConfig AddDeviceFormConfig(DeviceFormConfig parm);
|
||||
|
||||
int UpdateDeviceFormConfig(DeviceFormConfig parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user