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 { /// /// 巡检计划service接口 /// public interface IDeviceRouteInspectionPlanService : IBaseService { PagedInfo GetList(DeviceRouteInspectionPlanQueryDto parm); DeviceRouteInspectionPlan GetInfo(string Id); DeviceRouteInspectionPlan AddDeviceRouteInspectionPlan(DeviceRouteInspectionPlan parm); int UpdateDeviceRouteInspectionPlan(DeviceRouteInspectionPlan parm); } }