初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import type { PageParam } from '@/api';
/**
* 商品点赞和收藏表
*/
export interface GoodsRelation {
// id
id?: number;
// 用户ID
userId?: number;
// 商品ID
goodsId?: number;
// 类型(收藏(collect、点赞(like))
type?: string;
// 某种类型的商品(普通商品、秒杀商品)
category?: string;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
// 更新时间
updateTime?: string;
}
/**
* 商品点赞和收藏表搜索条件
*/
export interface GoodsRelationParam extends PageParam {
id?: number;
keywords?: string;
}