新增结点实现

This commit is contained in:
boyce
2025-10-02 11:48:58 +08:00
parent 6511fc4ac0
commit d4c0bd22ad
8 changed files with 278 additions and 11 deletions

View File

@@ -8,7 +8,7 @@ import (
// 系统入口ID定义1000以内
const (
EntranceID_ArrayParam = 2
EntranceID_IntParam = 3
EntranceID_IntParam = 1
)
func init() {
@@ -60,7 +60,7 @@ func (em *Output) Exec() (int, error) {
return 0, fmt.Errorf("Output Exec inParam not found")
}
fmt.Printf("Output Exec inParam %d", val)
fmt.Printf("Output Exec inParam %d\n", val)
return 0, nil
}