OSDN Git Service

a2448ba1ccc5194caef2c9ae40a8b547359e2f98
[bytom/vapor.git] / federation / database / orm / asset.go
1 package orm
2
3 import (
4         "github.com/vapor/federation/types"
5 )
6
7 type Asset struct {
8         ID                uint64          `gorm:"primary_key" json:"-"`
9         AssetID           string          `json:"asset_id"`
10         IssuanceProgram   string          `json:"-"`
11         VMVersion         uint64          `json:"-"`
12         RawDefinitionByte string          `json:"-"`
13         CreatedAt         types.Timestamp `json:"-"`
14         UpdatedAt         types.Timestamp `json:"-"`
15 }