package com.project.common.constant;
|
|
public class PayMethodConstants
|
{
|
public static final Integer WX_PAY = 1;//微信支付
|
public static final Integer ZFB_PAY = 2;//支付宝支付
|
public static final Integer XX_PAY = 3;//线下现金支付
|
public static final Integer WX_VALUE_PAY = 4;//微信+余额
|
public static final Integer ZFB_VALUE_PAY = 5;//支付宝+余额
|
public static final Integer VALUE_PAY= 6;//纯余额
|
|
}
|