2020-07-22 22:17:53 +08:00
|
|
|
|
package models
|
|
|
|
|
|
|
2022-03-21 21:39:36 +08:00
|
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
|
|
|
2021-07-11 18:05:57 +08:00
|
|
|
|
// User 用户
|
2020-07-22 22:17:53 +08:00
|
|
|
|
type User struct {
|
2022-03-21 21:39:36 +08:00
|
|
|
|
Id uint32 `field:"id"` // ID
|
2022-03-22 21:45:07 +08:00
|
|
|
|
IsOn bool `field:"isOn"` // 是否启用
|
2022-03-21 21:39:36 +08:00
|
|
|
|
Username string `field:"username"` // 用户名
|
|
|
|
|
|
Password string `field:"password"` // 密码
|
|
|
|
|
|
Fullname string `field:"fullname"` // 真实姓名
|
|
|
|
|
|
Mobile string `field:"mobile"` // 手机号
|
|
|
|
|
|
Tel string `field:"tel"` // 联系电话
|
|
|
|
|
|
Remark string `field:"remark"` // 备注
|
|
|
|
|
|
Email string `field:"email"` // 邮箱地址
|
2022-12-08 20:25:46 +08:00
|
|
|
|
VerifiedEmail string `field:"verifiedEmail"` // 激活后的邮箱
|
2022-03-21 21:39:36 +08:00
|
|
|
|
EmailIsVerified uint8 `field:"emailIsVerified"` // 邮箱是否已验证
|
|
|
|
|
|
AvatarFileId uint64 `field:"avatarFileId"` // 头像文件ID
|
|
|
|
|
|
CreatedAt uint64 `field:"createdAt"` // 创建时间
|
|
|
|
|
|
Day string `field:"day"` // YYYYMMDD
|
|
|
|
|
|
UpdatedAt uint64 `field:"updatedAt"` // 修改时间
|
|
|
|
|
|
State uint8 `field:"state"` // 状态
|
|
|
|
|
|
Source string `field:"source"` // 来源
|
|
|
|
|
|
ClusterId uint32 `field:"clusterId"` // 集群ID
|
|
|
|
|
|
Features dbs.JSON `field:"features"` // 允许操作的特征
|
|
|
|
|
|
RegisteredIP string `field:"registeredIP"` // 注册使用的IP
|
2022-03-22 22:11:32 +08:00
|
|
|
|
IsRejected bool `field:"isRejected"` // 是否已拒绝
|
2022-03-21 21:39:36 +08:00
|
|
|
|
RejectReason string `field:"rejectReason"` // 拒绝理由
|
2022-03-22 22:11:32 +08:00
|
|
|
|
IsVerified bool `field:"isVerified"` // 是否验证通过
|
2022-03-21 21:39:36 +08:00
|
|
|
|
RequirePlans uint8 `field:"requirePlans"` // 是否需要购买套餐
|
2022-09-13 19:04:31 +08:00
|
|
|
|
Modules dbs.JSON `field:"modules"` // 用户模块
|
2022-10-14 10:03:29 +08:00
|
|
|
|
PriceType string `field:"priceType"` // 计费类型:traffic|bandwidth
|
|
|
|
|
|
PricePeriod string `field:"pricePeriod"` // 结算周期
|
2022-10-23 16:22:20 +08:00
|
|
|
|
ServersEnabled uint8 `field:"serversEnabled"` // 是否禁用所有服务
|
2020-07-22 22:17:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type UserOperator struct {
|
2022-09-13 19:04:31 +08:00
|
|
|
|
Id any // ID
|
|
|
|
|
|
IsOn any // 是否启用
|
|
|
|
|
|
Username any // 用户名
|
|
|
|
|
|
Password any // 密码
|
|
|
|
|
|
Fullname any // 真实姓名
|
|
|
|
|
|
Mobile any // 手机号
|
|
|
|
|
|
Tel any // 联系电话
|
|
|
|
|
|
Remark any // 备注
|
|
|
|
|
|
Email any // 邮箱地址
|
2022-12-08 20:25:46 +08:00
|
|
|
|
VerifiedEmail any // 激活后的邮箱
|
2022-09-13 19:04:31 +08:00
|
|
|
|
EmailIsVerified any // 邮箱是否已验证
|
|
|
|
|
|
AvatarFileId any // 头像文件ID
|
|
|
|
|
|
CreatedAt any // 创建时间
|
|
|
|
|
|
Day any // YYYYMMDD
|
|
|
|
|
|
UpdatedAt any // 修改时间
|
|
|
|
|
|
State any // 状态
|
|
|
|
|
|
Source any // 来源
|
|
|
|
|
|
ClusterId any // 集群ID
|
|
|
|
|
|
Features any // 允许操作的特征
|
|
|
|
|
|
RegisteredIP any // 注册使用的IP
|
|
|
|
|
|
IsRejected any // 是否已拒绝
|
|
|
|
|
|
RejectReason any // 拒绝理由
|
|
|
|
|
|
IsVerified any // 是否验证通过
|
|
|
|
|
|
RequirePlans any // 是否需要购买套餐
|
|
|
|
|
|
Modules any // 用户模块
|
2022-10-14 10:03:29 +08:00
|
|
|
|
PriceType any // 计费类型:traffic|bandwidth
|
|
|
|
|
|
PricePeriod any // 结算周期
|
2022-10-23 16:22:20 +08:00
|
|
|
|
ServersEnabled any // 是否禁用所有服务
|
2020-07-22 22:17:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewUserOperator() *UserOperator {
|
|
|
|
|
|
return &UserOperator{}
|
|
|
|
|
|
}
|