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"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Shop is the golang structure for table shop.
|
|
|
|
|
type Shop struct {
|
2024-11-22 09:23:33 +08:00
|
|
|
|
ShopId string `json:"shopId" orm:"shop_id" ` // 商户编号
|
|
|
|
|
PromoterId string `json:"promoterId" orm:"promoter_id" ` // 推广人编号
|
|
|
|
|
MerchNumber string `json:"merchNumber" orm:"merch_number" ` // 商户账号
|
|
|
|
|
ChildMerchNumber string `json:"childMerchNumber" orm:"child_merch_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" ` // 门头照片
|
|
|
|
|
Industry string `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" ` // 最后更新时间
|
2024-11-05 09:49:02 +08:00
|
|
|
|
}
|