OSDN Git Service

feat: add processIssuing (#152)
[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"`
9         AssetID           string
10         IssuanceProgram   string
11         VMVersion         uint64
12         RawDefinitionByte string
13         CreatedAt         types.Timestamp
14         UpdatedAt         types.Timestamp
15 }