yuleduiPay/service/po/shop_admin.go

26 lines
1.5 KiB
Go
Raw Normal View History

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"
)
// 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" ` // 最后更新时间
}