Files
lti-api/internal/entities/nonstock_supplier.go
T

10 lines
196 B
Go

package entities
import "time"
type NonstockSupplier struct {
NonstockID uint `gorm:"primaryKey"`
SupplierID uint `gorm:"primaryKey"`
CreatedAt time.Time `gorm:"autoCreateTime"`
}