package model // 卡操作日志 type Log_card_operation struct { Model UserId uint `gorm:"not null;" json:"userId"` // 操作人 Iccid string `gorm:"not null;type:varchar(255)" json:"iccid"` // iccid Source string `gorm:"not null;type:varchar(255)" json:"source"` // 来源 Operation string `gorm:"type:varchar(255)" json:"operation"` // 操作 Remark string `gorm:"type:varchar(255)" json:"remark"` // 备注 }