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 IDevicePointInspectionPlanService : IBaseService { PagedInfo GetList(DevicePointInspectionPlanQueryDto parm); DevicePointInspectionPlan GetInfo(string Id); DevicePointInspectionPlan AddDevicePointInspectionPlan(DevicePointInspectionPlan parm); int UpdateDevicePointInspectionPlan(DevicePointInspectionPlan parm); } }