goProject/trunk/goutil/vsmsUtil/qcloud/telField.go

14 lines
236 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
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,
}
}