6
0

base_account.go 1.0 KB

12345678910111213141516171819
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import "github.com/gogf/gf/os/gtime"
  6. // BaseAccount is the golang structure for table base_account.
  7. type BaseAccount struct {
  8. Id int `orm:"Id,primary" json:"id"` // 主键
  9. Account string `orm:"Account" json:"account"` // 账户
  10. AccountName string `orm:"AccountName" json:"accountName"` // 账户名称
  11. Surplus int `orm:"Surplus" json:"surplus"` // 账户余额
  12. Available int `orm:"Available" json:"available"` // 可用余额
  13. Limit int `orm:"Limit" json:"limit"` // 使用限额
  14. Advance int `orm:"Advance" json:"advance"` // 优先级
  15. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"`
  16. }