@@ -14,6 +14,8 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
public class SignModel {
+
+ @Schema(description = "用户userId")
private String userId;
@Schema(description = "商户代码")
@@ -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) {
* 签约类型
@@ -10,6 +12,7 @@ public enum UnionUserOpenType {
UnionUserOpenType(String name) {