package org.jeecg.common.util; public class StringUtils { public static String getNullStr(String str) { if (str == null) return ""; return str; } }