forked from BIT_SCST_STIA/SmartMurphytt
14 lines
390 B
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"`
|
||
|
}
|