2024-11-05 09:49:02 +08:00
|
|
|
|
// =================================================================================
|
|
|
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
|
|
package po
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Promoter is the golang structure for table promoter.
|
|
|
|
|
type Promoter struct {
|
|
|
|
|
PromoterId string `json:"promoterId" orm:"promoter_id" ` // 推广人编号
|
|
|
|
|
Phone string `json:"phone" orm:"phone" ` // 手机号
|
|
|
|
|
Name string `json:"name" orm:"name" ` // 姓名
|
2024-11-22 09:23:33 +08:00
|
|
|
|
Area string `json:"area" orm:"area" ` // 所在地区
|
2024-11-05 09:49:02 +08:00
|
|
|
|
Password string `json:"password" orm:"password" ` // 登录密码
|
|
|
|
|
WithdrawInfo string `json:"withdrawInfo" orm:"withdraw_info" ` // 提现信息
|
|
|
|
|
Role string `json:"role" orm:"role" ` // 角色
|
|
|
|
|
JoinDate *gtime.Time `json:"joinDate" orm:"join_date" ` // 入驻时间
|
|
|
|
|
State int `json:"state" orm:"state" ` // 推广人状态
|
|
|
|
|
DeleteFlag int `json:"deleteFlag" orm:"delete_flag" ` // 0:未删除 1:已删除
|
|
|
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // 创建时间
|
|
|
|
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // 最后更新时间
|
|
|
|
|
}
|