get_all_store_param.go 266 B

123456789
  1. package vo
  2. type GetAllStoreParam struct {
  3. EnterpriseId string `json:"enterprise_id"`
  4. SubAccountId int64 `json:"sub_account_id"`
  5. StoreName string `json:"store_name"` // 门店名称
  6. Page int `json:"page"`
  7. PageSize int `json:"page_size"`
  8. }