shgx_tz_mom/ZR.Service/mes/Device/IService/IDevicePointInspectionPlanService.cs

24 lines
667 B
C#
Raw Normal View History

2025-09-23 15:11:18 +08:00
using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.dev;
using ZR.Model.MES.dev.Dto;
namespace ZR.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);
}
}