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
{
///
/// 设备检查项表单配置表service接口
///
public interface IDeviceFormConfigService : IBaseService
{
PagedInfo GetList(DeviceFormConfigQueryDto parm);
DeviceFormConfig GetInfo(string Id);
DeviceFormConfig AddDeviceFormConfig(DeviceFormConfig parm);
int UpdateDeviceFormConfig(DeviceFormConfig parm);
}
}