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"` // 用户电话号码 CreateTime int64 `json:"createTime" gorm:"column:create_time"` // 创建时间 CreatedAt string `json:"createdAt" gorm:"column:created_at"` // 创建时间 TenantID string `json:"tenantID" gorm:"column:tenant_id"` TenantName string `json:"tenantName" gorm:"-"` } // TableName 表名称 func (*VoIPAuth) TableName() string { return "u_voip_auth" }