package model // UDMAuth UDM鉴权用户对象 u_auth_user type UDMAuth struct { ID string `json:"id" gorm:"column:id;primaryKey;autoIncrement"` // 默认ID IMSI string `json:"imsi" gorm:"column:imsi"` // SIM卡号 Amf string `json:"amf" gorm:"column:amf"` // ANF Status string `json:"status" gorm:"column:status"` // 状态 默认给1 Ki string `json:"ki" gorm:"column:ki"` // ki AlgoIndex string `json:"algoIndex" gorm:"column:algo_index"` // AlgoIndex Opc string `json:"opc" gorm:"column:opc"` // opc NeId string `json:"neId" gorm:"column:ne_id"` // UDM网元标识-子系统 } func (UDMAuth) TableName() string { return "u_auth_user" }