You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
278 B

package model
import(
"github.com/shopspring/decimal"
"time"
)
type BrokerWallet struct {
Id uint `gorm:"primaryKey"`
BrokerId uint // 合伙人id
Balance decimal.Decimal // 余额
TotalAmount decimal.Decimal // 累加金额
CreatedAt time.Time
UpdatedAt time.Time
}