SmartMurphytt/chainmaker_go/model/user.go

15 lines
278 B
Go
Raw Permalink Normal View History

2023-11-29 21:48:12 +08:00
package model
import (
"gorm.io/gorm"
)
type User struct {
gorm.Model
User_id string `gorm:"size:255;not null"`
Password string `gorm:"size:255;not null"`
Org_info string `gorm:"size:255;not null"`
Pub_key string `gorm:"not null"`
Pri_key string `gorm:"not null"`
}