info.go 379 B

1234567891011
  1. package rule
  2. import "git.sxidc.com/go-framework/baize/framework/core/application"
  3. type Info struct {
  4. application.InfoIDField
  5. Scope string `json:"scope" sqlresult:"column:scope"`
  6. DomainName string `json:"domainName" sqlresult:"column:domain_name"`
  7. Rule string `json:"rule" sqlresult:"column:rule"`
  8. Enabled bool `json:"enabled" sqlresult:"column:enabled"`
  9. }