xiaoyong931011
2023-10-23 df998a061e22b13297e02eee97e2418e4bbeaa1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.pay.util;
 
/**
 * 编解码工具类
 * @author chenyf
 * @date 2018-12-15
 */
public class CodeUtil {
 
    public static String base64Encode(byte[] value) {
        return Base64Util.encode(value);
    }
 
    public static byte[] base64Decode(String value) {
        return Base64Util.decode(value);
    }
}