Files
template-10490/api/system/appstore/model/index.ts
2025-01-27 23:24:42 +08:00

14 lines
167 B
TypeScript

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