Files
site-10584/api/system/appstore/model/index.ts
2026-01-29 10:43:43 +08:00

14 lines
167 B
TypeScript

/**
* 消息
*/
export interface Appstore {
// 消息id
id?: number;
// 标题
title?: string;
// 时间
time?: string;
// 状态
status?: number;
}