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

15 lines
252 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, number string) *telField {
return &telField{
Nationcode: nation,
Mobile: number,
}
}