zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceFormConfigService.cs

24 lines
603 B
C#
Raw Normal View History

2024-05-22 14:39:35 +08:00
using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
2024-06-03 18:26:07 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
2024-05-22 14:39:35 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.MES.dev.IService
2024-05-22 14:39:35 +08:00
{
/// <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);
}
}