|
|
@@ -11,9 +11,9 @@ type BaseAccount struct {
|
|
|
Id int `orm:"Id,primary" json:"id"` // 主键
|
|
|
Account string `orm:"Account" json:"account"` // 账户
|
|
|
AccountName string `orm:"AccountName" json:"accountName"` // 账户名称
|
|
|
- Surplus int `orm:"Surplus" json:"surplus"` // 账户余额
|
|
|
- Available int `orm:"Available" json:"available"` // 可用余额
|
|
|
- Limit int `orm:"Limit" json:"limit"` // 使用限额
|
|
|
+ Surplus float64 `orm:"Surplus" json:"surplus"` // 账户余额
|
|
|
+ Available float64 `orm:"Available" json:"available"` // 可用余额
|
|
|
+ Limit float64 `orm:"Limit" json:"limit"` // 使用限额
|
|
|
Advance int `orm:"Advance" json:"advance"` // 优先级
|
|
|
DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"`
|
|
|
}
|