fix: delete ims user and voip auth

This commit is contained in:
zhangsz
2025-04-11 15:37:49 +08:00
parent 6375bb7d8b
commit cbdec51ba8
3 changed files with 15 additions and 12 deletions

View File

@@ -2,10 +2,10 @@ package model
// @Description VoLTE用户信息
type VoIPAuth struct {
ID string `json:"id" gorm:"column:id;primaryKey;autoIncrement"` // 主键
NeId string `json:"neId" gorm:"column:ne_id"` // UDM网元标识
UserName string `json:"userName" gorm:"column:user_name"` // SIM卡/USIM卡ID
Password string `json:"password" gorm:"column:password"` // 用户电话号码
ID string `json:"id" gorm:"column:id;primaryKey;autoIncrement"` // 主键
NeId string `json:"neId" gorm:"column:ne_id"` // UDM网元标识
UserName string `json:"userName" gorm:"column:user_name"` // SIM卡/USIM卡ID
Password string `json:"password" gorm:"column:password"` // 用户电话号码
TenantID string `json:"tenantID" gorm:"column:tenant_id"`
TenantName string `json:"tenantName" gorm:"-"`