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.
31 lines
484 B
31 lines
484 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 品牌
|
|
*/
|
|
export interface Brand {
|
|
// ID
|
|
brandId?: number;
|
|
// 品牌名称
|
|
brandName?: string;
|
|
// 图标
|
|
image?: string;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 排序号
|
|
sortNumber?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 品牌搜索条件
|
|
*/
|
|
export interface BrandParam extends PageParam {
|
|
brandId?: number;
|
|
keywords?: string;
|
|
}
|