1234567891011121314151617 |
- package entity
- type Rule struct {
- Type string //规则类型
- Score int //分值
- Min int //最小长度
- Max int //最大程度
- DataType string //数据类型
- Value interface{} //值
- }
- type SiteInfo struct {
- Site string
- Subtype string
- Toptype string
- TypePlate string
- }
|