Java Code Examples for com.ruoyi.common.utils.StringUtils#toCamelCase()

The following examples show how to use com.ruoyi.common.utils.StringUtils#toCamelCase() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: VelocityUtils.java    From supplierShop with MIT License 5 votes vote down vote up
/**
 * 获取树编码
 * 
 * @param options 生成其他选项
 * @return 树编码
 */
public static String getTreecode(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_CODE))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_CODE));
    }
    return "";
}
 
Example 2
Source File: VelocityUtils.java    From supplierShop with MIT License 5 votes vote down vote up
/**
 * 获取树父编码
 * 
 * @param options 生成其他选项
 * @return 树父编码
 */
public static String getTreeParentCode(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_PARENT_CODE))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_PARENT_CODE));
    }
    return "";
}
 
Example 3
Source File: VelocityUtils.java    From supplierShop with MIT License 5 votes vote down vote up
/**
 * 获取树名称
 * 
 * @param options 生成其他选项
 * @return 树名称
 */
public static String getTreeName(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_NAME))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_NAME));
    }
    return "";
}
 
Example 4
Source File: VelocityUtils.java    From RuoYi-Vue with MIT License 5 votes vote down vote up
/**
 * 获取树编码
 * 
 * @param options 生成其他选项
 * @return 树编码
 */
public static String getTreecode(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_CODE))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_CODE));
    }
    return "";
}
 
Example 5
Source File: VelocityUtils.java    From RuoYi-Vue with MIT License 5 votes vote down vote up
/**
 * 获取树父编码
 * 
 * @param options 生成其他选项
 * @return 树父编码
 */
public static String getTreeParentCode(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_PARENT_CODE))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_PARENT_CODE));
    }
    return "";
}
 
Example 6
Source File: VelocityUtils.java    From RuoYi-Vue with MIT License 5 votes vote down vote up
/**
 * 获取树名称
 * 
 * @param options 生成其他选项
 * @return 树名称
 */
public static String getTreeName(JSONObject paramsObj)
{
    if (paramsObj.containsKey(GenConstants.TREE_NAME))
    {
        return StringUtils.toCamelCase(paramsObj.getString(GenConstants.TREE_NAME));
    }
    return "";
}