Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

新增商户开户意愿申请单状态枚举 #3413

Merged
merged 2 commits into from
Nov 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.applyconfirm;

import com.github.binarywang.wxpay.bean.applyment.enums.ApplymentStateEnum;
import com.github.binarywang.wxpay.bean.applyconfirm.enums.ApplySubjectStateEnum;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand All @@ -9,7 +9,6 @@
import lombok.experimental.Accessors;

import java.io.Serializable;
import java.util.List;

/**
* 查询申请单状态返回对象信息
Expand All @@ -26,7 +25,7 @@ public class ApplySubjectConfirmStateQueryResult implements Serializable {
* 申请单状态
*/
@SerializedName("applyment_state")
private ApplymentStateEnum applymentState;
private ApplySubjectStateEnum applymentState;
/**
* 二维码图片
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
package com.github.binarywang.wxpay.bean.applyconfirm.enums;

/**
* 开户意愿申请单状态枚举类
*
* @author 潘安
*/
public enum ApplySubjectStateEnum {
/**
* 【审核中】,请耐心等待3~7个工作日,微信支付将会完成审核。
*/
APPLYMENT_STATE_WAITTING_FOR_AUDIT,
/**
* 【编辑中】,可能提交申请发生了错误导致,可用同一个业务申请编号重新提交。
*/
APPLYMENT_STATE_EDITTING,
/**
* 【待确认联系信息】,请扫描微信支付返回的二维码确认联系信息(此过程可修改超级管理员手机号)。
*/
APPLYMENT_STATE_WAITTING_FOR_CONFIRM_CONTACT,
/**
* 【待账户验证】,请扫描微信支付返回的二维码在小程序端完成账户验证。
*/
APPLYMENT_STATE_WAITTING_FOR_CONFIRM_LEGALPERSON,
/**
* 【审核通过】,请扫描微信支付返回的二维码在小程序端完成授权流程。
*/
APPLYMENT_STATE_PASSED,
/**
* 【审核驳回】,请按照驳回原因修改申请资料,并更换业务申请编码,重新提交申请。
*/
APPLYMENT_STATE_REJECTED,
/**
* 【已冻结】,可能是该主体已完成过入驻,请查看驳回原因,并通知驳回原因中指定的联系人扫描微信支付返回的二维码在小程序端完成授权流程。
*/
APPLYMENT_STATE_FREEZED,
/**
* 【已作废】,表示申请单已被撤销,无需再对其进行操作。
*/
APPLYMENT_STATE_CANCELED

}