You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
448 B
25 lines
448 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 分销商设置表
|
|
*/
|
|
export interface DealerSetting {
|
|
// 设置项标示
|
|
key?: string;
|
|
// 设置项描述
|
|
describe?: string;
|
|
// 设置内容(json格式)
|
|
values?: string;
|
|
// 商城ID
|
|
tenantId?: number;
|
|
// 更新时间
|
|
updateTime?: number;
|
|
}
|
|
|
|
/**
|
|
* 分销商设置表搜索条件
|
|
*/
|
|
export interface DealerSettingParam extends PageParam {
|
|
key?: number;
|
|
keywords?: string;
|
|
}
|