105040 Update 增加实体对象引用

This commit is contained in:
lihanbo 2025-01-20 17:04:07 +08:00
parent 0b21021566
commit 4e97d1c9f5
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,5 @@
using EPLAN.Harness.Core.Utils; using EPLAN.Harness.Core.Utils;
using EPLAN.Harness.ProjectCore.Occurrences;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
@ -132,5 +133,8 @@ namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
OnPropertyChanged(nameof(E_part)); OnPropertyChanged(nameof(E_part));
} }
} }
public BaseOccurrence S_partObj { get; set; }
public BaseOccurrence E_partObj { get; set; }
} }
} }