diamond.go 560 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package model

import (
	"time"
)

type DiamondAccountDetail struct {
	ID               uint64
	CreatedTime      time.Time
	UpdatedTime      time.Time
	UserId           uint64
	DiamondAccountId uint64
	OperateId        uint64
	OperateType      int
	OriginId         uint64
	AddReduce        uint8
	Num              uint32
	Remark           string
	BefNum           uint32
	AftNum           uint32
	OperateIds       string
}

type DiamondAccountDetailCopy struct {
}

func (DiamondAccountDetailCopy) TableName() string {
	return "diamond_account_detail_copy"
}