using System; using DOAN.Model; using System.Collections.Generic; using DOAN.Model.MES.dev; using DOAN.Model.MES.dev.Dto; namespace DOAN.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); } }