修复重大故障: JwtAuthenticationFilter文件,远程读取用户接口导致的服务器请求数量跑满
This commit is contained in:
@@ -46,9 +46,9 @@ export interface CmsWebsite {
|
||||
// 应用价格
|
||||
price?: string,
|
||||
// 交付方式
|
||||
deliveryMethod: number,
|
||||
deliveryMethod?: number,
|
||||
// 计费方式
|
||||
chargingMethod: number,
|
||||
chargingMethod?: number,
|
||||
// 服务到期时间
|
||||
expirationTime?: string;
|
||||
// 模版ID
|
||||
@@ -59,6 +59,8 @@ export interface CmsWebsite {
|
||||
industryChild?: string;
|
||||
// 企业ID
|
||||
companyId?: number;
|
||||
// 开发者
|
||||
developer?: string;
|
||||
// 所在国家
|
||||
country?: string;
|
||||
// 所在省份
|
||||
@@ -91,6 +93,12 @@ export interface CmsWebsite {
|
||||
official?: boolean;
|
||||
// 是否显示在插件市场
|
||||
market?: boolean;
|
||||
// 是否插件
|
||||
plugin?: boolean;
|
||||
// 是否允许被搜索(案例展示)
|
||||
search?: boolean;
|
||||
// 主题色
|
||||
color?: string;
|
||||
// 运行状态
|
||||
running?: number;
|
||||
// 状态 0未开通 1运行中 2维护中 3已关闭 4已欠费停机 5违规关停
|
||||
@@ -131,6 +139,8 @@ export interface CmsWebsiteParam extends PageParam {
|
||||
recommend?: number;
|
||||
official?: boolean;
|
||||
market?: boolean;
|
||||
plugin?: boolean;
|
||||
search?: boolean;
|
||||
websiteType?: string;
|
||||
userId?: number;
|
||||
keywords?: string;
|
||||
|
||||
Reference in New Issue
Block a user