Commit e549dcab by wuwenlong

code generator opt;

parent a3d2c862
......@@ -187,7 +187,7 @@ public class VelocityUtils
}
else if (template.contains("service.java.vm"))
{
fileName = StringUtils.format("{}/service/I{}Service.java", javaPath, className);
fileName = StringUtils.format("{}/service/{}Service.java", javaPath, className);
}
else if (template.contains("serviceImpl.java.vm"))
{
......
......@@ -10,7 +10,7 @@ import ${packageName}.domain.${ClassName};
* @author ${author}
* @date ${datetime}
*/
public interface I${ClassName}Service extends IService<${ClassName}>
public interface ${ClassName}Service extends IService<${ClassName}>
{
/**
* 查询${functionName}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment