6
0

base_account.go 1.7 KB

12345678910111213141516171819202122232425262728
  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:"account_name"` // 账户名称
  11. Surplus float64 `orm:"Surplus" json:"surplus"` // 账户余额
  12. Available float64 `orm:"Available" json:"available"` // 可用余额
  13. Limit float64 `orm:"Limit" json:"limit"` // 使用限额
  14. Advance int `orm:"Advance" json:"advance"` // 优先级
  15. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deleted_at"` //
  16. MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
  17. MainUser string `orm:"MainUser" json:"main_user"` // 主用户
  18. Remark string `orm:"Remark" json:"remark"` // 备注
  19. CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
  20. CreateBy string `orm:"CreateBy" json:"create_by"` //
  21. CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
  22. UpdateUserId int `orm:"UpdateUserId" json:"update_user_id"` // 更新者ID
  23. UpdateBy string `orm:"UpdateBy" json:"update_by"` // 更新者
  24. UpdateOn *gtime.Time `orm:"UpdateOn" json:"update_on"` // 更新时间
  25. }