store_explore_param.go 454 B

1234567891011
  1. package vo
  2. type StoreExploreParam struct {
  3. LocalLifeId string `json:"local_life_id"`
  4. Status int64 `json:"status"` // 1待预约 2待确认 3待探店 4已探店
  5. TalentName string `json:"talent_name"` // 达人昵称
  6. SearchTime string `json:"search_time"` // 预约探店时间/探店时间/完成探店时间
  7. Page int `json:"page"`
  8. PageSize int `json:"page_size"`
  9. TaskId string `json:"task_id"` // 子任务id
  10. }