mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 04:17:23 +00:00
10 lines
167 B
Go
10 lines
167 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type CollectionResource struct {
|
|
CollectionID uint `gorm:"primaryKey"`
|
|
ResourceID uint `gorm:"primaryKey"`
|
|
CreatedAt time.Time
|
|
}
|