新增:开发者中心功能、md编辑器等。

This commit is contained in:
2025-02-17 15:25:24 +08:00
parent 9081e41188
commit d61e683d41
40 changed files with 5036 additions and 591 deletions

View File

@@ -43,6 +43,12 @@ export interface CmsWebsite {
adminUrl?: string;
// 应用版本 10免费版 20专业版 30永久授权
version?: number;
// 应用价格
price?: string,
// 交付方式
deliveryMethod: number,
// 计费方式
chargingMethod: number,
// 服务到期时间
expirationTime?: string;
// 模版ID
@@ -77,8 +83,14 @@ export interface CmsWebsite {
policeNo?: string;
// 备注
comments?: string;
// 详细介绍
content?: any;
// 是否推荐
recommend?: number;
// 是否官方
official?: boolean;
// 是否显示在插件市场
market?: boolean;
// 运行状态
running?: number;
// 状态 0未开通 1运行中 2维护中 3已关闭 4已欠费停机 5违规关停
@@ -117,5 +129,9 @@ export interface CmsWebsiteParam extends PageParam {
websiteId?: number;
status?: number;
recommend?: number;
official?: boolean;
market?: boolean;
websiteType?: string;
userId?: number;
keywords?: string;
}