getBindPhoneUser.go 240 B

1234567891011121314
  1. package public
  2. import "time"
  3. type BindMsg struct {
  4. MgoUserID string
  5. TimeStamp int64 //绑定手机号时间
  6. Phone string
  7. }
  8. // GetBidPhoneUser 获取绑定手机号
  9. func GetBidPhoneUser(st, ed time.Time) []*BindMsg {
  10. return nil
  11. }