隐私号

This commit is contained in:
suyl
2021-09-03 16:21:58 +08:00
parent fcd4a01de6
commit 78e053ccf6
7 changed files with 162 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
package model
type SecretNumber struct {
ModelIDCULD
PoolKey string `json:"poolKey"`
Number string `json:"number"` //隐私号
City string `json:"city"` //归属地
Comment string `json:"comment"` //备注
}
func (*SecretNumber) TableUnique() [][]string {
return [][]string{
[]string{"PoolKey", "Number"},
}
}