store_create_param.go 966 B

12345678910111213141516171819
  1. package vo
  2. type StorePhoto struct {
  3. PhotoUrl string `json:"photo_url"` // 图片或视频url
  4. PhotoUid string `json:"photo_uid"`
  5. Symbol int64 `json:"symbol"` // 图片为主图或详情图标志位,1为主图,2为轮播图,3为轮播视频. 4为详情图. 5为详情视频
  6. }
  7. type StoreCreateParam struct {
  8. EnterpriseId string `json:"enterprise_id"` // 要绑定的企业id
  9. SubAccountId int64 `json:"sub_account_id"`
  10. StoreName string `json:"store_name"` // 门店名称
  11. StoreCategory string `json:"store_category"` // 门店类目(/分隔)
  12. StoreType int64 `json:"store_type"` // 门店类型,1单门店,2连锁门店
  13. StoreLocation string `json:"store_location"` // 门店地址
  14. StoreDetail string `json:"store_detail"` // 门店特点
  15. StoreLink string `json:"store_link"` // 分销链接
  16. StorePhotos []StorePhoto `json:"store_photos"` // 图片列表
  17. }