rulenode.go 442 B

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