goProject/trunk/goutil/smsUtil/qcloud/telField.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

15 lines
252 B
Go

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,
}
}