Files
hzhub/hzhub-admin/apps/web-antd/src/api/system/notice/model.d.ts

12 lines
220 B
TypeScript

export interface Notice {
noticeId: number;
noticeTitle: string;
noticeType: string;
noticeContent: string;
status: string;
remark: string;
createBy: number;
createByName: string;
createTime: string;
}