疯狂的狮子li
2020-07-17 22f3e2ad238dfc1eaac86745873e023d883e4911
ruoyi/src/main/java/com/ruoyi/project/tool/gen/util/GenUtils.java
@@ -147,10 +147,10 @@
     */
    public static String getBusinessName(String tableName)
    {
        int lastIndex = tableName.lastIndexOf("_");
        int lastIndex = tableName.indexOf("_");
        int nameLength = tableName.length();
        String businessName = StringUtils.substring(tableName, lastIndex + 1, nameLength);
        return businessName;
        return StringUtils.toCamelCase(businessName);
    }
    /**