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

24 lines
675 B
C#
Raw Normal View History

using System;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev;
using DOAN.Model.MES.dev.Dto;
2024-07-01 16:04:10 +08:00
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);
}
}