MIF_E31222379_BE/domain/initialcoint.go

12 lines
418 B
Go

package domain
import "time"
type Point struct {
ID string `gorm:"primaryKey;type:uuid;default:uuid_generate_v4()" json:"id"`
CoinName string `gorm:"not null" json:"coin_name"`
ValuePerUnit float64 `gorm:"not null" json:"value_perunit"`
CreatedAt time.Time `gorm:"default:current_timestamp" json:"createdAt"`
UpdatedAt time.Time `gorm:"default:current_timestamp" json:"updatedAt"`
}