You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/common/storage/model/phone_sn.go

15 lines
457 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Copyright © 2024 OpenIM. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package model
// PhoneSNInfo 手机号与 is_snd、关联 user_id每条以 phone 唯一)
type PhoneSNInfo struct {
Phone string `bson:"phone"`
UserID int64 `bson:"user_id"`
IsSnd bool `bson:"is_snd"`
UpdateTime int64 `bson:"update_time"`
}