All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xxscloud5722.data.PayChannelEnum Maven / Gradle / Ivy

The newest version!
package com.github.xxscloud5722.data;

/**
 * @author Cat.
 */
public enum PayChannelEnum {
    ALI_PAY("支付宝支付"),
    WE_CHAT_PAY("微信支付");

    private String name;

    PayChannelEnum(String name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy