mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 05:21:57 +00:00
25 lines
878 B
Go
25 lines
878 B
Go
package entities
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type KandangGroup struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Name string `gorm:"type:varchar(50);not null;uniqueIndex:kandang_groups_name_unique,where:deleted_at IS NULL"`
|
|
Status string `gorm:"type:varchar(50);not null"`
|
|
LocationId uint `gorm:"not null"`
|
|
PicId uint `gorm:"not null"`
|
|
CreatedBy uint `gorm:"not null"`
|
|
CreatedAt time.Time `gorm:"autoCreateTime"`
|
|
UpdatedAt time.Time `gorm:"autoUpdateTime"`
|
|
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
|
|
|
|
CreatedUser User `gorm:"foreignKey:CreatedBy;references:Id"`
|
|
Location Location `gorm:"foreignKey:LocationId;references:Id"`
|
|
Pic User `gorm:"foreignKey:PicId;references:Id"`
|
|
Kandangs []Kandang `gorm:"foreignKey:KandangGroupId;references:Id"`
|
|
}
|