设备管理
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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
|
||||
{
|
||||
/// <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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user