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