package top.baogutang.music.enums; /** * * @description: * * @author: N1KO * @date: 2024/12/25 : 13:53 */ public enum PayChannel { ALI_PAY, WECHAT_PAY, UNION_PAY, ; public static PayChannel getPayChannel(String payChannel) { for (PayChannel channel : PayChannel.values()) { if (channel.name().equalsIgnoreCase(payChannel)) { return channel; } } return null; } }