goProject/.svn/pristine/7d/7d67785200c5e064d0a1548f0e289daadf7ef2b8.svn-base
2025-01-06 16:21:36 +08:00

15 lines
252 B
Plaintext

package qcloud
// 电话结构
type telField struct {
Nationcode string `json:"nationcode"`
Mobile string `json:"mobile"`
}
func newTelField(nation, number string) *telField {
return &telField{
Nationcode: nation,
Mobile: number,
}
}