store_update_param.go 609 B

123456789101112
  1. package vo
  2. type StoreUpdateParam struct {
  3. StoreId int64 `json:"store_id"`
  4. StoreName string `json:"store_name"` // 门店名称
  5. StoreCategory string `json:"store_category"` // 门店类目(/分隔)
  6. StoreType int64 `json:"store_type"` // 门店类型,1单门店,2连锁门店
  7. StoreLocation string `json:"store_location"` // 门店地址
  8. StoreDetail string `json:"store_detail"` // 门店特点
  9. StoreLink string `json:"store_link"` // 分销链接
  10. StorePhotos []StorePhoto `json:"store_photos"` // 图片列表
  11. }