mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
12 lines
263 B
Go
12 lines
263 B
Go
package model
|
|
|
|
import "SamWaf/model/baseorm"
|
|
|
|
type Otp struct {
|
|
baseorm.BaseOrm
|
|
UserName string `json:"user_name"` //用户名
|
|
Url string `json:"url"` //URL
|
|
Secret string `json:"secret"` //密钥
|
|
Remarks string `json:"remarks"` //备注
|
|
}
|