fix request param render bug

This commit is contained in:
oppofind 2019-09-23 20:08:02 +08:00
parent 725781fc7a
commit e05a4ea0dc
2 changed files with 2 additions and 2 deletions

View File

@ -1046,7 +1046,7 @@ public class SourceBuilder {
reqParam.append(paramName).append("|")
.append(DocClassUtil.processTypeNameForParams(simpleName)).append("|")
.append(comment).append("|")
.append(required).append("\n");
.append(required).append("|-\n");
}
}

View File

@ -21,7 +21,7 @@ public class BeetlTemplateUtil {
/**
* Get Beetl template by file name
* @param templateName
* @param templateName template name
* @return Beetl Template Object
*/
public static Template getByName(String templateName) {