21 lines
894 B
Go
21 lines
894 B
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package po
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// User is the golang structure for table user.
|
||
|
type User struct {
|
||
|
UserId string `json:"userId" orm:"user_id" ` // 用户ID
|
||
|
WxId string `json:"wxId" orm:"wx_id" ` // 微信用户ID
|
||
|
ZfbId string `json:"zfbId" orm:"zfb_id" ` // 支付宝用户ID
|
||
|
Mobile string `json:"mobile" orm:"mobile" ` // 手机号
|
||
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` //
|
||
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` //
|
||
|
Bean float64 `json:"bean" orm:"bean" ` // 金豆数量
|
||
|
}
|