entity.go 342 B

1234567891011121314151617
  1. package entity
  2. type Rule struct {
  3. Type string //规则类型
  4. Score int //分值
  5. Min int //最小长度
  6. Max int //最大程度
  7. DataType string //数据类型
  8. Value interface{} //值
  9. }
  10. type SiteInfo struct {
  11. Site string
  12. Subtype string
  13. Toptype string
  14. TypePlate string
  15. }