shgx_tz_mom/ZR.Service/mes/Device/IService/IDeviceFormConfigService.cs
2025-09-23 15:11:18 +08:00

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);
}
}