14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
export interface Notice {
|
|
id: string;
|
|
title: string;
|
|
type: string;
|
|
content: string;
|
|
state: boolean;
|
|
isDeleted: boolean;
|
|
creationTime: string;
|
|
creatorId?: string | null;
|
|
lastModifierId?: string | null;
|
|
lastModificationTime?: string | null;
|
|
orderNum: number;
|
|
}
|