fix: ue ims user

This commit is contained in:
zhangsz
2025-04-10 19:53:04 +08:00
parent a00a7da016
commit 8913970d01
4 changed files with 23 additions and 17 deletions

View File

@@ -5,6 +5,8 @@ const (
IMSI_MAX_LENGTH = 15
// MSISDN 号码长度
MSISDN_MAX_LENGTH = 15
TAG_VoLTE = "1" // VoLTE标记
TAG_VOIP = "0" // VoIP标记
)
// @Description VoLTE用户信息
@@ -13,8 +15,8 @@ type IMSUser struct {
NeId string `json:"neId" gorm:"column:ne_id"` // UDM网元标识
IMSI string `json:"imsi" gorm:"column:imsi"` // SIM卡/USIM卡ID
MSISDN string `json:"msisdn" gorm:"column:msisdn"` // 用户电话号码
VoLTE string `json:"volte" gorm:"column:volte"` // VoLTE
VNI string `json:"vni" gorm:"column:vni"` // VNI
VoLTE string `json:"volte" gorm:"column:volte"` // VoLTE
VNI string `json:"vni" gorm:"column:vni"` // VNI
TenantID string `json:"tenantID" gorm:"column:tenant_id"`
TenantName string `json:"tenantName" gorm:"-"`