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/Visitor.ts

19 lines
320 B

export interface Visitor {
id: string;
// 预约人
appointment: string;
// 预约时间
time: number;
// 拜访目的
notes: string;
// 审核状态
status: VisitorStatus;
// 审核管理员
managerName: string;
}
export enum VisitorStatus {
uncheck = 'uncheck',
ok = 'ok',
fail = 'fail'
}