| 12345678910111213141516171819202122232425262728 |
- // ==========================================================================
- // 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:"account_name"` // 账户名称
- 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:"deleted_at"` //
- MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
- MainUser string `orm:"MainUser" json:"main_user"` // 主用户
- Remark string `orm:"Remark" json:"remark"` // 备注
- CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
- CreateBy string `orm:"CreateBy" json:"create_by"` //
- CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
- UpdateUserId int `orm:"UpdateUserId" json:"update_user_id"` // 更新者ID
- UpdateBy string `orm:"UpdateBy" json:"update_by"` // 更新者
- UpdateOn *gtime.Time `orm:"UpdateOn" json:"update_on"` // 更新时间
- }
|