| 12345678910111213141516171819 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import "github.com/gogf/gf/os/gtime"
- // BaseAccount is the golang structure for table base_account.
- 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"` // 使用限额
- Advance int `orm:"Advance" json:"advance"` // 优先级
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"`
- }
|