修改账号注册方法,以及邮箱协议对接
This commit is contained in:
14
models/proxy.go
Normal file
14
models/proxy.go
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user