This commit is contained in:
2025-12-29 10:45:01 +08:00
parent dc1af138e2
commit a6cd0c3d52
158 changed files with 22599 additions and 859 deletions

View File

@@ -0,0 +1,31 @@
import type { PageParam } from '@/api';
/**
*
*/
export interface MerchantCollect {
//
id?: number;
//
merchantId?: number;
//
userId?: number;
// 是否删除, 0否, 1是
deleted?: number;
// 状态
status?: number;
// 排序号
sortNumber?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 搜索条件
*/
export interface MerchantCollectParam extends PageParam {
id?: number;
keywords?: string;
}