1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.kidgrow.common.constant;
| /**
| * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
| *
| * @Description: 支付相关<br>
| * @Project: <br>
| * @CreateDate: Created in 2020/06/23 16:24 <br>
| * @Author: <a href="4345453@kidgrow.com">houruijun</a>
| **/
| public interface PayConstants {
| //支付状态
|
| //0订单创建
| int CREATE_ORDER=0;
| //1订单提交到网关
| int SUBMIT_ORDER=1;
| //2订单支付成功
| int ORDER_PAY_SUCEESS=2;
| //-1订单支付失败
| int ORDER_PAY_FAIL=-1;
| }
|
|