Files
pc-10588/app/api/shop/shopDealerSetting/model/index.ts
2026-03-05 13:32:48 +08:00

26 lines
456 B
TypeScript

import type { PageParam } from '@/api';
/**
* 分销商设置表
*/
export interface ShopDealerSetting {
// 设置项标示
key?: string;
// 设置项描述
describe?: string;
// 设置内容(json格式)
values?: string;
// 商城ID
tenantId?: number;
// 更新时间
updateTime?: number;
}
/**
* 分销商设置表搜索条件
*/
export interface ShopDealerSettingParam extends PageParam {
key?: number;
keywords?: string;
}