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

10 lines
178 B

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