2024-11-26 23:12:41 +08:00

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{}) }