xiaoyong931011
2023-10-21 e9c1806141283804528aa010695f6b0f06803d1b
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);
    }
}