32 lines
2.2 KiB
Go
32 lines
2.2 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package po
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// Shop is the golang structure for table shop.
|
||
type Shop struct {
|
||
ShopId string `json:"shopId" orm:"shop_id" ` // 商户编号
|
||
PromoterId string `json:"promoterId" orm:"promoter_id" ` // 推广人编号
|
||
AccountNumber string `json:"accountNumber" orm:"account_number" ` // 商户账号
|
||
ChildAccountNumber string `json:"childAccountNumber" orm:"child_account_number" ` // 子商户号
|
||
ContactName string `json:"contactName" orm:"contact_name" ` // 联系人
|
||
Tel string `json:"tel" orm:"tel" ` // 联系电话
|
||
ShopName string `json:"shopName" orm:"shop_name" ` // 店铺名称
|
||
Address string `json:"address" orm:"address" ` // 营业地址
|
||
DoorPhoto string `json:"doorPhoto" orm:"door_photo" ` // 门头照片
|
||
InteriorPhoto string `json:"interiorPhoto" orm:"interior_photo" ` // 内部照片
|
||
Industry int `json:"industry" orm:"industry" ` // 所属行业
|
||
EquipmentNo string `json:"equipmentNo" orm:"equipment_no" ` // 设备编号
|
||
Extend string `json:"extend" orm:"extend" ` // 附加信息
|
||
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" ` // 最后更新时间
|
||
}
|