rulenode.go 385 B

1234567891011121314151617
  1. package models
  2. import (
  3. "github.com/jinzhu/gorm"
  4. )
  5. // RuleNode 规则链中的节点
  6. type RuleNode struct {
  7. gorm.Model
  8. RuleChainID int //关联rulechain id
  9. AdditionalInfo string //附加属性信息
  10. Configuration string //配置信息
  11. Type string //类型
  12. Name string //名称
  13. DebugModel bool //调试模式
  14. Intro string //描述
  15. }