16 lines
615 B
Go
16 lines
615 B
Go
package model
|
|
|
|
// UDMExtend UDM用户IMSI扩展信息 udm_extend
|
|
type UDMExtend struct {
|
|
ID string `json:"id" gorm:"column:id;primaryKey;autoIncrement"` // 默认ID
|
|
IMSI string `json:"imsi" gorm:"column:imsi"` // SIM卡/USIM卡ID
|
|
MSISDN string `json:"msisdn" gorm:"column:msisdn"` // 用户电话号码
|
|
NeId string `json:"neId" gorm:"column:ne_id"` // UDM网元标识-子系统
|
|
Remark string `json:"remark" gorm:"column:remark"` // 备注
|
|
}
|
|
|
|
// TableName 表名称
|
|
func (*UDMExtend) TableName() string {
|
|
return "udm_extend"
|
|
}
|