14 lines
236 B
Go
14 lines
236 B
Go
|
|
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,
|
||
|
|
}
|
||
|
|
}
|