1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.sinata.rest.modular.member.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.sinata.common.enums.EnumPayType;
| import com.sinata.rest.modular.member.model.MemOrderAuth;
|
| /**
| * <p>
| * 会员实名认证订单 服务类
| * </p>
| *
| * @author goku
| * @since 2023-03-23
| */
| public interface IMemOrderAuthService extends IService<MemOrderAuth> {
|
| public boolean checkOrderAndSet(String orderNo, Integer payType);
|
| /**
| * 实名认证订单回调
| */
| Object payCallback(String orderNo, EnumPayType payType, String transactionNo);
|
| }
|
|