forked from BIT_SCST_STIA/SmartMurphytt
17 lines
498 B
Go
17 lines
498 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type TransferOwnership struct {
|
|
gorm.Model
|
|
Resource_uniqueid string `gorm:"not null"`
|
|
Origin_userid string `gorm:"size:255;not null"`
|
|
Authorized_userid string `gorm:"size:255;not null"`
|
|
Right_type string `gorm:"not null"`
|
|
Resource_name string `gorm:"not null"`
|
|
Resource_describe string `gorm:"not null"`
|
|
Contract_describe string `gorm:"not null"`
|
|
Time string `gorm:"not null"`
|
|
Data_sign string `gorm:"not null"`
|
|
}
|