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

24 lines
676 B
C#

using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using ZR.Model.MES.dev.Dto;
namespace ZR.Service.Business.IBusinessService
{
/// <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);
}
}