1234567891011121314151617 |
- package com.szwl.model.utils;
- /**
- * 编解码工具类
- * @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);
- }
- }
|