fix: expose appKey on service activation requests

这个提交包含在:
XuqmGroup 2026-05-08 10:22:39 +08:00
父节点 9bb9868d31
当前提交 3e55e9d9b6

查看文件

@ -1,5 +1,6 @@
package com.xuqm.tenant.entity;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
@ -49,6 +50,12 @@ public class ServiceActivationRequestEntity {
public String getAppId() { return appId; }
public void setAppId(String appId) { this.appId = appId; }
@JsonProperty("appKey")
public String getAppKey() { return appId; }
@JsonProperty("appKey")
public void setAppKey(String appKey) { this.appId = appKey; }
public FeatureServiceEntity.Platform getPlatform() { return platform; }
public void setPlatform(FeatureServiceEntity.Platform platform) { this.platform = platform; }