All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itxiaoer.plugins.mybatis.util.ServiceUtil Maven / Gradle / Ivy

There is a newer version: 1.1.15
Show newest version
package com.itxiaoer.plugins.mybatis.util;

import java.util.Properties;

/**
 * 工具类
 *
 * @author : liuyk
 */
public final class ServiceUtil {

    public static String getPackage(Properties properties, String entityPackage) {
        return entityPackage.substring(0, entityPackage.lastIndexOf(".")) + "." + "service";
    }

    public static String getName(Properties properties, String domainObjectName) {
        return domainObjectName + "Service";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy