转账到零钱参数完善
This commit is contained in:
@@ -131,4 +131,18 @@ public interface MkDistributionUserService extends IService<MkDistributionUser>
|
||||
Boolean withdraw(long userId, MkDistributionWithdrawFlowDTO withdrawFlowDTO);
|
||||
|
||||
Map<String, Object> withdrawDetail(long userId, Long id);
|
||||
|
||||
/**
|
||||
* 微信转账回调
|
||||
* @param outBillNo 转账单号
|
||||
* @param state ACCEPTED:单据已受理
|
||||
* PROCESSING:单据处理中,转账结果尚未明确,如一直处于此状态,建议检查账户余额是否足够
|
||||
* WAIT_USER_CONFIRM:待收款用户确认,可拉起微信收款确认页面进行收款确认
|
||||
* TRANSFERING:转账中,转账结果尚未明确,可拉起微信收款确认页面再次重试确认收款
|
||||
* SUCCESS: 转账成功
|
||||
* FAIL: 转账失败
|
||||
* CANCELING: 撤销中
|
||||
* CANCELLED: 已撤销
|
||||
*/
|
||||
void withdrawNotify(String outBillNo, String state);
|
||||
}
|
||||
|
||||
@@ -64,10 +64,11 @@ public interface TableValueConstant {
|
||||
@Getter
|
||||
enum Status {
|
||||
PENDING("pending", "提现中"),
|
||||
REFUND("refund", "提现中"),
|
||||
SUB("sub", "系统扣减"),
|
||||
OPEN("open", "分销员购买"),
|
||||
FINISH("finish", "已提现"),
|
||||
SELF_RECHARGE("self_recharge", "自助充值");
|
||||
SELF_RECHARGE("self_recharge", "自助充值"), FAIL("fail", "失败");
|
||||
private final String code;
|
||||
private final String msg;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user