From 1a12ef2743134f7fdea6d0abbfec34543b85bdb5 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期一, 12 八月 2024 09:13:36 +0800 Subject: [PATCH] 资产界面增加vmo层 --- WinFrmUI/HStation.WinFrmUI.Assets.Core/00-PumpProductManage/AddPumpProductSeriesDlg.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-PumpProductManage/AddPumpProductSeriesDlg.cs b/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-PumpProductManage/AddPumpProductSeriesDlg.cs index c2b1118..eadd4ff 100644 --- a/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-PumpProductManage/AddPumpProductSeriesDlg.cs +++ b/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-PumpProductManage/AddPumpProductSeriesDlg.cs @@ -9,7 +9,7 @@ InitializeComponent(); } - public event Func<AddPumpSeriesDto, Task<bool>> ReloadDataEvent = null; + public event Func<Vmo.PumpSeries, Task<bool>> ReloadDataEvent = null; private Yw.BLL.SysCatalog _bll = null; @@ -35,7 +35,7 @@ { if (!Valid()) return; - var model = new AddPumpSeriesDto(); + var model = new Vmo.PumpSeries(); model.Name = NameTextEdit.Text.Trim(); model.TagName = TagNameTextEdit.Text.Trim(); model.MotorFrequency = MotorFrequencyTextEdit.Text.Trim(); -- Gitblit v1.9.3