feat(api): 添加广告模型状态字段并优化首页热销商品请求

- 在广告模型中新增 status 字段支持状态管理
- 首页热销商品接口请求新增 recommend 参数筛选推荐商品
This commit is contained in:
2026-06-21 10:23:19 +08:00
parent 8975197522
commit 0654fcdab8
2 changed files with 2 additions and 1 deletions

View File

@@ -55,5 +55,6 @@ export interface CmsAdParam extends PageParam {
adType?: string;
pageId?: number;
pageName?: string;
status?: number;
keywords?: string;
}