yuleduiPay/service/po/promoter.go

26 lines
1.4 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// 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" ` // 姓名
Area int `json:"area" orm:"area" ` // 所在地区
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" ` // 最后更新时间
}