{ // 套餐ID int64 id; // 是否启用 bool isOn; // 套餐名称 string name; // 套餐简介 string description; // 集群ID int64 clusterId; // 流量限制 bytes trafficLimitJSON; // 单节点带宽限制 bytes bandwidthLimitPerNodeJSON; // 是否有所有权限 bool hasFullFeatures; // 权限列表,[code1, code2, ...] bytes featuresJSON; // 价格类型:traffic, bandwidth, period string priceType; // 流量价格配置 bytes trafficPriceJSON; // 带宽价格配置 bytes bandwidthPriceJSON; // 月度价格 double monthlyPrice; // 季度价格 double seasonallyPrice; // 年度价格 double yearlyPrice; // 可以添加的网站数 int32 totalServers; // 每个网站可以添加的域名数 int32 totalServerNamesPerServer; // 可以添加的域名总数 int32 totalServerNames; // 每日访问量额度 int64 dailyRequests; // 每月访问量额度 int64 monthlyRequests; // 每日Websocket连接数额度 int64 dailyWebsocketConnections; // 每月Websocket连接数额度 int64 monthlyWebsocketConnections; // 文件最大上传尺寸 json:size_capacity bytes maxUploadSizeJSON; }