xiaoyong931011
2022-09-02 30f13db308bb6c050a4aa44e10ae993dc4fb3bb4
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);
    }
}