25 lines
685 B
C#
25 lines
685 B
C#
using System;
|
|
using ZR.Model;
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.dev;
|
|
using ZR.Model.MES.dev.Dto;
|
|
using ZR.Service;
|
|
|
|
namespace ZR.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 巡检计划service接口
|
|
/// </summary>
|
|
public interface IDeviceRouteInspectionPlanService : IBaseService<DeviceRouteInspectionPlan>
|
|
{
|
|
PagedInfo<DeviceRouteInspectionPlanDto> GetList(DeviceRouteInspectionPlanQueryDto parm);
|
|
|
|
DeviceRouteInspectionPlan GetInfo(string Id);
|
|
|
|
DeviceRouteInspectionPlan AddDeviceRouteInspectionPlan(DeviceRouteInspectionPlan parm);
|
|
|
|
int UpdateDeviceRouteInspectionPlan(DeviceRouteInspectionPlan parm);
|
|
|
|
}
|
|
}
|