Commit 34b13916 authored by 吴春's avatar 吴春
parents ca211687 9175c48a
......@@ -2173,6 +2173,14 @@ namespace Mall.WebApi.Controllers.TradePavilion
TenantId = RequestParm.TenantId,
BrandCategory = (BrandCategoryEnum)parms.GetInt("BrandCategory"),
};
if (query.TenantId == 18)
{
int BrandCategory = parms.GetInt("BrandCategory");
if (BrandCategory == 0)
{
query.BrandCategory = BrandCategoryEnum.ConsumerBrand;
}
}
var list = carrierModule.GetBrandClassListModule(query);
return ApiResult.Success(data: list);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment