TRX 1 yıl önce
ebeveyn
işleme
1f6b9f0bf6

+ 2 - 0
src/main/java/com/github/microservice/stream/model/SignModel.java

@@ -14,6 +14,8 @@ import lombok.NoArgsConstructor;
 @AllArgsConstructor
 @NoArgsConstructor
 public class SignModel {
+
+    @Schema(description = "用户userId")
     private String userId;
 
     @Schema(description = "商户代码")

+ 3 - 0
src/main/java/com/github/microservice/types/unionFrictionlessPayType/ContractState.java

@@ -1,5 +1,7 @@
 package com.github.microservice.types.unionFrictionlessPayType;
 
+import lombok.Getter;
+
 /**
  * 无感支付签约状态
  */
@@ -13,6 +15,7 @@ public enum ContractState {
     ;
 
     // 名称
+    @Getter
     private String name;
 
     ContractState(String name) {

+ 3 - 0
src/main/java/com/github/microservice/types/unionFrictionlessPayType/UnionUserOpenType.java

@@ -1,5 +1,7 @@
 package com.github.microservice.types.unionFrictionlessPayType;
 
+import lombok.Getter;
+
 /**
  * 签约类型
  */
@@ -10,6 +12,7 @@ public enum UnionUserOpenType {
     ;
 
     // 名称
+    @Getter
     private String name;
 
     UnionUserOpenType(String name) {