PayConstants.java 319 B

1234567891011121314151617
  1. package com.qs.mp.common.constant;
  2. /**
  3. * 支付相关常量定义
  4. * @author Evan
  5. * @date 2023/3/27
  6. */
  7. public class PayConstants {
  8. /** 支付宝*/
  9. public static Integer ALI_PAY_TYPE = 1;
  10. /** 微信*/
  11. public static Integer WX_PAY_TYPE = 2;
  12. /** H5*/
  13. public static Integer H5_PAY_TYPE = 3;
  14. }