From e26c98bd7cfde538096d74ea9019e2128b5fe313 Mon Sep 17 00:00:00 2001 From: chenjiahe <763432473@qq.com> Date: 星期二, 16 五月 2023 10:39:24 +0800 Subject: [PATCH] 优化 --- src/main/java/com/platform/entity/ThirtApplication.java | 23 ++++++++++++++++------- 1 files changed, 16 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/platform/entity/ThirtApplication.java b/src/main/java/com/platform/entity/ThirtApplication.java index d1fc6a3..f6c44fd 100644 --- a/src/main/java/com/platform/entity/ThirtApplication.java +++ b/src/main/java/com/platform/entity/ThirtApplication.java @@ -4,12 +4,14 @@ /**搴旂敤appid*/ private String appId; - /**鏉ユ簮浠g爜*/ - private String sourceCode; + /**鏉ユ簮搴旂敤缂栫爜*/ + private String appIdCode; /**搴旂敤鍚嶇О*/ private String name; - /***/ + /**骞冲彴绉橀挜*/ private String privateKey; + /**鍟嗘埛鍏挜*/ + private String merchantRsaPublicKey; public String getAppId() { return appId; @@ -19,12 +21,12 @@ this.appId = appId; } - public String getSourceCode() { - return sourceCode; + public String getAppIdCode() { + return appIdCode; } - public void setSourceCode(String sourceCode) { - this.sourceCode = sourceCode; + public void setAppIdCode(String appIdCode) { + this.appIdCode = appIdCode; } public String getName() { @@ -43,4 +45,11 @@ this.privateKey = privateKey; } + public String getMerchantRsaPublicKey() { + return merchantRsaPublicKey; + } + + public void setMerchantRsaPublicKey(String merchantRsaPublicKey) { + this.merchantRsaPublicKey = merchantRsaPublicKey; + } } -- Gitblit v1.8.0