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.
 
 
 
 
pocketcommunityweb/src/app/interface/Notice.ts

12 lines
195 B

export interface Notice {
// 公告id
id: number;
// 公告人
author: string;
// 公告内容
content: string;
// 公告标题
title: string;
// 公告时间
time: number;
}