feat: sale add create user

This commit is contained in:
zzw
2026-09-02 09:47:34 +08:00
parent ad4bc7de85
commit 540f74f9b7
39 changed files with 2023 additions and 282 deletions
@@ -0,0 +1,11 @@
package dao
type UserCredential struct {
Id int64 `gorm:"column:id;primaryKey;autoIncrement" json:"id"`
UserId int64 `gorm:"column:user_id" json:"user_id"`
CredentialType string `gorm:"column:credential_type" json:"credential_type"`
Identifier string `gorm:"column:identifier" json:"identifier"`
Secret string `gorm:"column:secret" json:"secret"`
ExtraJson string `gorm:"column:extra_json;type:json" json:"extra_json"`
Status uint8 `gorm:"column:status" json:"status"`
}