修改articles字段

This commit is contained in:
小海
2020-04-16 18:34:23 +08:00
parent f85973f4c8
commit 6b84118d16
5 changed files with 8 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
export class Category {
id: number;
name: string;
articles: string;
articles?: number[];
size?: number;
}

View File

@@ -1,6 +1,6 @@
export class Tag {
id?: number;
name: string;
articles?: string;
articles?: number[];
size: number;
}