@@ -54,7 +54,7 @@ public string MethodAbsolutelyName
5454 {
5555 get
5656 {
57- if ( Type == ScenarioMethodType . 插件方法 )
57+ if ( Type == ScenarioMethodType . PluginMethod )
5858 {
5959 var sb = new StringBuilder ( "|" ) ;
6060 var typeJsonConverter = new TypeJsonConverter ( ) ;
@@ -263,11 +263,11 @@ public ScenarioMethodNode GenerateNode()
263263 {
264264 switch ( Type )
265265 {
266- case ScenarioMethodType . 插件方法 :
266+ case ScenarioMethodType . PluginMethod :
267267 break ;
268- case ScenarioMethodType . 判断 :
268+ case ScenarioMethodType . Condition :
269269 {
270- pointItem . Title = "判断 " ;
270+ pointItem . Title = "Condition " ;
271271 ObservableCollection < ConnectorItem > StringoutItems = new ( )
272272 {
273273 new ConnectorItem
@@ -317,9 +317,9 @@ public ScenarioMethodNode GenerateNode()
317317 pointItem . Input = StringinItems ;
318318 break ;
319319 }
320- case ScenarioMethodType . 一对二 :
320+ case ScenarioMethodType . OneToTwo :
321321 {
322- pointItem . Title = "一对二 " ;
322+ pointItem . Title = "OneToTwo " ;
323323 ObservableCollection < ConnectorItem > StringoutItems = new ( )
324324 {
325325 new ConnectorItem
@@ -360,9 +360,9 @@ public ScenarioMethodNode GenerateNode()
360360 pointItem . Input = StringinItems ;
361361 break ;
362362 }
363- case ScenarioMethodType . 一对多 :
363+ case ScenarioMethodType . OneToMany :
364364 {
365- pointItem . Title = "一对多 " ;
365+ pointItem . Title = "OneToMany " ;
366366 ObservableCollection < ConnectorItem > StringoutItems = new ( )
367367 {
368368 new ConnectorItem
@@ -416,9 +416,9 @@ public ScenarioMethodNode GenerateNode()
416416 pointItem . Input = StringinItems ;
417417 break ;
418418 }
419- case ScenarioMethodType . 相等 :
419+ case ScenarioMethodType . Equal :
420420 {
421- pointItem . Title = "相等 " ;
421+ pointItem . Title = "Equal " ;
422422 ObservableCollection < ConnectorItem > StringoutItems = new ( )
423423 {
424424 new ConnectorItem
@@ -466,7 +466,7 @@ public ScenarioMethodNode GenerateNode()
466466 pointItem . Input = StringinItems ;
467467 break ;
468468 }
469- case ScenarioMethodType . 变量设置 :
469+ case ScenarioMethodType . VariableSet :
470470 {
471471 pointItem . Title = $ "{ ValueName } ";
472472 ObservableCollection < ConnectorItem > inpItems = new ( ) ;
@@ -505,7 +505,7 @@ public ScenarioMethodNode GenerateNode()
505505 pointItem . Output = outItems ;
506506 break ;
507507 }
508- case ScenarioMethodType . 变量获取 :
508+ case ScenarioMethodType . VariableGet :
509509 {
510510 pointItem . Title = $ "{ ValueName } ";
511511 ObservableCollection < ConnectorItem > inpItems = new ( ) ;
@@ -544,7 +544,7 @@ public ScenarioMethodNode GenerateNode()
544544 pointItem . Output = outItems ;
545545 break ;
546546 }
547- case ScenarioMethodType . 临时变量设置 :
547+ case ScenarioMethodType . TempVariableSet :
548548 {
549549 pointItem . Title = $ "{ ValueName } ";
550550 ObservableCollection < ConnectorItem > inpItems = new ( ) ;
@@ -583,7 +583,7 @@ public ScenarioMethodNode GenerateNode()
583583 pointItem . Output = outItems ;
584584 break ;
585585 }
586- case ScenarioMethodType . 临时变量获取 :
586+ case ScenarioMethodType . TempVariableGet :
587587 {
588588 pointItem . Title = $ "{ ValueName } ";
589589 ObservableCollection < ConnectorItem > inpItems = new ( ) ;
@@ -622,7 +622,7 @@ public ScenarioMethodNode GenerateNode()
622622 pointItem . Output = outItems ;
623623 break ;
624624 }
625- case ScenarioMethodType . 打开运行本地项目 :
625+ case ScenarioMethodType . OpenRunLocalProject :
626626 {
627627 pointItem . Title = "打开/运行本地项目" ;
628628 ObservableCollection < ConnectorItem > outItems = new ( ) ;
0 commit comments