修改账号注册方法,以及邮箱协议对接

This commit is contained in:
zyj
2025-09-24 18:22:25 +08:00
parent 002419a7ed
commit 81ed379cf3
21 changed files with 1090 additions and 8 deletions

14
models/proxy.go Normal file
View File

@@ -0,0 +1,14 @@
package models
type Proxy struct {
ID int64 `gorm:"id;primary_key;auto_increment"`
Proxy string `gorm:"proxy"`
Type string `gorm:"type"`
UseStatus string `gorm:"use_status"`
UpdateTime int64 `gorm:"update_time"`
CreateTime int64 `gorm:"create_time"`
}
func (Proxy) TableName() string {
return "ar_proxy"
}