1234567891011121314151617 |
- package com.qs.mp.common.constant;
- /**
- * 支付相关常量定义
- * @author Evan
- * @date 2023/3/27
- */
- public class PayConstants {
- /** 支付宝*/
- public static Integer ALI_PAY_TYPE = 1;
- /** 微信*/
- public static Integer WX_PAY_TYPE = 2;
- /** H5*/
- public static Integer H5_PAY_TYPE = 3;
- }
|