26 lines
1.5 KiB
Go
26 lines
1.5 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package po
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// ShopAdmin is the golang structure for table shop_admin.
|
||
type ShopAdmin struct {
|
||
ShopAdminId string `json:"shopAdminId" orm:"shop_admin_id" ` // 商家管理编号
|
||
ShopId string `json:"shopId" orm:"shop_id" ` // 商户编号
|
||
UserName string `json:"userName" orm:"user_name" ` // 登录账号
|
||
GiftRate float64 `json:"giftRate" orm:"gift_rate" ` // 金豆赠送率
|
||
DeductionRatio float64 `json:"deductionRatio" orm:"deduction_ratio" ` // 抵现比例
|
||
Bonus float64 `json:"bonus" orm:"bonus" ` // 奖励金
|
||
Password string `json:"password" orm:"password" ` // 登录密码
|
||
Extend string `json:"extend" orm:"extend" ` // 附加信息
|
||
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" ` // 最后更新时间
|
||
}
|