fhx
2023-09-26 c20b43c1aa93f404188fde97b03c116bb8499752
提交 | 用户 | age
43d893 1 package com.hz.his.constant;
C 2
3 /**支付方式*/
4 public class PayWay {
5
6     /**交易方式-微信*/
7     public static final String PAY_WAY_WECHAT = "WECHAT";
8     /**交易方式-支付宝*/
9     public static final String PAY_WAY_ALIPAY = "ALIPAY";
10     /**交易方式-银联*/
11     public static final String PAY_WAY_UNIONPAY = "UNIONPAY";
12     /**交易方式-数字人民币*/
13     public static final String PAY_WAYE_EC = "EC";
14 }