goProject/.svn/pristine/12/12d698470913bfc03a551aa87944abac426b9072.svn-base
2025-01-06 16:21:36 +08:00

14 lines
236 B
Plaintext

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