-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from dromara/1.0.20
1.0.20
- Loading branch information
Showing
15 changed files
with
156 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...ot-autoconfigure/src/main/java/cn/felord/payment/wechat/enumeration/BusinessCertType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* 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.enumeration; | ||
|
||
/** | ||
* The enum Business cert type. | ||
* | ||
* @author dax | ||
* @since 2023 /7/1 8:34 | ||
*/ | ||
public enum BusinessCertType { | ||
/** | ||
* 事业单位法人证书 | ||
*/ | ||
CERTIFICATE_TYPE_2388, | ||
|
||
/** | ||
* 统一社会信用代码证书 | ||
*/ | ||
CERTIFICATE_TYPE_2389, | ||
|
||
/** | ||
* 社会团体法人登记证书 | ||
*/ | ||
CERTIFICATE_TYPE_2394, | ||
/** | ||
* 民办非企业单位登记证书 | ||
*/ | ||
CERTIFICATE_TYPE_2395, | ||
|
||
/** | ||
* 基金会法人登记证书 | ||
*/ | ||
CERTIFICATE_TYPE_2396, | ||
/** | ||
* 宗教活动场所登记证 | ||
*/ | ||
CERTIFICATE_TYPE_2399, | ||
|
||
/** | ||
* 政府部门下发的其他有效证明文件 | ||
*/ | ||
CERTIFICATE_TYPE_2400, | ||
/** | ||
* 执业许可证/执业证 | ||
*/ | ||
CERTIFICATE_TYPE_2520, | ||
/** | ||
* 基层群众性自治组织特别法人统一社会信用代码证 | ||
*/ | ||
CERTIFICATE_TYPE_2521, | ||
/** | ||
* 农村集体经济组织登记证 | ||
*/ | ||
CERTIFICATE_TYPE_2522 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...oconfigure/src/main/java/cn/felord/payment/wechat/v3/model/ecommerce/UboInfoListItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 String uboIdDocPeriodEnd; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters