소스 검색

feat: Enterprise Entity/DTO/VO 补充 wanlihuiUid 字段

alphah 2 일 전
부모
커밋
fb254f6b0e

+ 3 - 0
java/src/main/java/com/payment/platform/module/payment/enterprise/dto/EnterpriseCreateDTO.java

@@ -40,4 +40,7 @@ public class EnterpriseCreateDTO {
 
     @Schema(description = "法人手持身份证照片(图片路径)")
     private String legalRepIdPhoto;
+
+    @Schema(description = "万里汇uid")
+    private String wanlihuiUid;
 }

+ 3 - 0
java/src/main/java/com/payment/platform/module/payment/enterprise/dto/EnterpriseUpdateDTO.java

@@ -41,4 +41,7 @@ public class EnterpriseUpdateDTO {
 
     @Schema(description = "法人手持身份证照片(图片路径)")
     private String legalRepIdPhoto;
+
+    @Schema(description = "万里汇uid")
+    private String wanlihuiUid;
 }

+ 4 - 0
java/src/main/java/com/payment/platform/module/payment/enterprise/dto/EnterpriseVO.java

@@ -89,4 +89,8 @@ public class EnterpriseVO {
 
     @Schema(description = "法人手持身份证照片")
     private String legalRepIdPhoto;
+
+    @Schema(description = "万里汇uid")
+    @com.fasterxml.jackson.annotation.JsonProperty("wanlihui_uid")
+    private String wanlihuiUid;
 }

+ 3 - 0
java/src/main/java/com/payment/platform/module/payment/enterprise/entity/EnterpriseEntity.java

@@ -33,6 +33,9 @@ public class EnterpriseEntity extends PaymentTenantBaseEntity {
     private Long serviceProviderId;
     private String scopeLabel;
 
+    /** 万里汇uid(国外服务商必填) */
+    private String wanlihuiUid;
+
     /** 入驻材料:营业执照(图片路径) */
     private String businessLicense;