2026-04-07 20:33:18 +08:00

15 lines
457 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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"`
}