Files
Yi.Framework/Yi.Vben5.Vue3/apps/web-antd/src/api/system/notice/model.d.ts
2026-01-04 13:45:07 +08:00

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;
}