mirror of
https://shylinux.com/x/community
synced 2025-05-08 14:48:11 +08:00
19 lines
396 B
Go
19 lines
396 B
Go
package model
|
|
|
|
import "shylinux.com/x/mysql-story/src/db"
|
|
|
|
const (
|
|
SECRET_ID = "secret_id"
|
|
SECRET_KEY = "secret_key"
|
|
)
|
|
|
|
type Tencentcloud struct {
|
|
db.ModelWithUID
|
|
AuthUID string `gorm:"type:char(32);index"`
|
|
UserUID string `gorm:"type:char(32)"`
|
|
SecretID string `gorm:"type:varchar(64)"`
|
|
SecretKey string `gorm:"type:varchar(64)"`
|
|
}
|
|
|
|
func init() { db.CmdModels("", &Tencentcloud{}) }
|