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.
puhui-go-web/src/app/model/goods.interface.ts

15 lines
293 B

11 months ago
export interface GoodsTypeData {
id: number;
10 months ago
parentId?: number | undefined;
11 months ago
title: string;
10 months ago
businessType?: any;
imgUrl?: any;
11 months ago
createTime: string;
updateTime: string;
10 months ago
status: string;
level?: number;
expand?: boolean;
children?: GoodsTypeData[];
parent?: GoodsTypeData;
11 months ago
}