设备管理

This commit is contained in:
qianhao.xu
2024-12-10 14:34:13 +08:00
parent d77e2953b7
commit ca725130e1
60 changed files with 7115 additions and 0 deletions

View File

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