mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-13 21:33:41 +08:00
- 电商二级商户进件补充最终受益人列表
This commit is contained in:
@@ -20,6 +20,9 @@ import cn.felord.payment.wechat.enumeration.ContactType;
|
||||
import cn.felord.payment.wechat.enumeration.IdDocType;
|
||||
import cn.felord.payment.wechat.v3.model.specmch.FinanceInstitutionInfo;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 二级商户进件申请API请求参数
|
||||
*
|
||||
@@ -41,6 +44,7 @@ public class EcommerceApplymentParams{
|
||||
private Boolean owner;
|
||||
private UboInfo uboInfo;
|
||||
private Boolean needAccountInfo;
|
||||
private List<UboInfoListItem> uboInfoList;
|
||||
private EcommerceAccountInfo accountInfo;
|
||||
private EcommerceContactInfo contactInfo;
|
||||
private SalesSceneInfo salesSceneInfo;
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright 2019-2022 felord.cn
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* Website:
|
||||
* https://felord.cn
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package cn.felord.payment.wechat.v3.model.ecommerce;
|
||||
|
||||
import cn.felord.payment.wechat.enumeration.IdDocType;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
|
||||
@Data
|
||||
public class UboInfoListItem {
|
||||
private IdDocType uboIdDocType;
|
||||
private String uboIdDocCopy;
|
||||
private String uboIdDocCopyBack;
|
||||
private String uboIdDocName;
|
||||
private String uboIdDocNumber;
|
||||
private String uboIdDocAddress;
|
||||
private LocalDate uboIdDocPeriodBegin;
|
||||
private LocalDate uboIdDocPeriodEnd;
|
||||
}
|
||||
Reference in New Issue
Block a user