Files
kunshan-bzfm-mes-backend/DOAN.Service/MES/Device/IService/IDevicePointInspectionPlanService.cs
2024-12-10 14:34:13 +08:00

24 lines
675 B
C#

using System;
using DOAN.Model;
using System.Collections.Generic;
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
namespace DOAN.Service.MES.dev.IService
{
/// <summary>
/// 点检任务service接口
/// </summary>
public interface IDevicePointInspectionPlanService : IBaseService<DevicePointInspectionPlan>
{
PagedInfo<DevicePointInspectionPlanDto> GetList(DevicePointInspectionPlanQueryDto parm);
DevicePointInspectionPlan GetInfo(string Id);
DevicePointInspectionPlan AddDevicePointInspectionPlan(DevicePointInspectionPlan parm);
int UpdateDevicePointInspectionPlan(DevicePointInspectionPlan parm);
}
}