疯狂的狮子li
2020-07-17 a53a3b3119659d6ec28b458dcefd46f4ec49d55c
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);
    }
    /**