24 lines
595 B
C#
24 lines
595 B
C#
using System;
|
|
using ZR.Model.MES.dev;
|
|
using ZR.Model.MES.dev.Dto;
|
|
using System.Collections.Generic;
|
|
using ZR.Model;
|
|
|
|
namespace ZR.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);
|
|
|
|
}
|
|
}
|