|
@@ -54,6 +54,7 @@ import com.fhs.trans.service.impl.TransService;
|
|
|
import com.google.common.collect.Maps;
|
|
|
import jakarta.annotation.Resource;
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.compress.utils.Lists;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.poi.ss.usermodel.*;
|
|
@@ -117,6 +118,7 @@ import java.util.stream.Collectors;
|
|
|
* @date 2022/2/23 18:43
|
|
|
**/
|
|
|
@Service
|
|
|
+@Slf4j
|
|
|
public class BizUserServiceImpl extends ServiceImpl<BizUserMapper, BizUser> implements BizUserService {
|
|
|
|
|
|
private static final String SNOWY_SYS_DEFAULT_PASSWORD_KEY = "SNOWY_SYS_DEFAULT_PASSWORD";
|
|
@@ -1212,7 +1214,7 @@ public class BizUserServiceImpl extends ServiceImpl<BizUserMapper, BizUser> impl
|
|
|
}
|
|
|
File file = new File(localPath);
|
|
|
String base = "data:image/png;base64,"+ Base64.encode(file);
|
|
|
- System.out.printf("base:"+base);
|
|
|
+ log.info("base:"+localPath);
|
|
|
downloadFile.close();
|
|
|
inputStream.close();
|
|
|
return base;
|