SmartMurphytt/chainmaker_go/model/rightCofirmation.go

14 lines
390 B
Go

package model
import "gorm.io/gorm"
type RightConfirmation struct {
gorm.Model
Resource_uniqueid string `gorm:"not null"`
Right_type string `gorm:"size:255;not null"`
Resource_name string `gorm:"size:255;not null"`
Resource_describe string `gorm:"not null"`
Owner_userid string `gorm:"not null"`
Is_right_confirmation string `gorm:"not null"`
}