!127 自动生成代码 Tree型 add/edit 页面生成不正确

Merge pull request !127 from Dulk/fix-genTree
master
若依 2019-09-11 18:40:47 +08:00 committed by Gitee
commit e1a38a3bd5
4 changed files with 35 additions and 3 deletions

View File

@ -18,6 +18,9 @@ public class TreeEntity extends BaseEntity
/** 显示顺序 */ /** 显示顺序 */
private Integer orderNum; private Integer orderNum;
/** 祖级列表 */
private String ancestors;
public String getParentName() public String getParentName()
{ {
return parentName; return parentName;
@ -47,4 +50,14 @@ public class TreeEntity extends BaseEntity
{ {
this.orderNum = orderNum; this.orderNum = orderNum;
} }
public String getAncestors()
{
return ancestors;
}
public void setAncestors(String ancestors)
{
this.ancestors = ancestors;
}
} }

View File

@ -325,7 +325,22 @@ public class GenTableColumn extends BaseEntity
public static boolean isSuperColumn(String javaField) public static boolean isSuperColumn(String javaField)
{ {
return StringUtils.equalsAnyIgnoreCase(javaField, "createBy", "createTime", "updateBy", "updateTime", "remark"); return StringUtils.equalsAnyIgnoreCase(javaField,
//BaseEntity
"createBy", "createTime", "updateBy", "updateTime", "remark",
//TreeEntity
"parentName", "parentId", "orderNum", "ancestors");
}
public boolean isUsableColumn()
{
return isUsableColumn(javaField);
}
public static boolean isUsableColumn(String javaField)
{
//isSuperColumn()中的名单用于避免生成多余Domain属性若某些属性在生成页面时需要用到不能忽略则放在此处白名单
return StringUtils.equalsAnyIgnoreCase(javaField, "parentId" , "orderNum");
} }
public String readConverterExp() public String readConverterExp()

View File

@ -14,7 +14,8 @@
<form class="form-horizontal m" id="form-${businessName}-add"> <form class="form-horizontal m" id="form-${businessName}-add">
#foreach($column in $columns) #foreach($column in $columns)
#set($field=$column.javaField) #set($field=$column.javaField)
#if($column.insert && !$column.superColumn && !$column.pk) #if($column.insert && !$column.pk)
#if(($column.usableColumn) || (!$column.superColumn))
#set($parentheseIndex=$column.columnComment.indexOf("")) #set($parentheseIndex=$column.columnComment.indexOf(""))
#if($parentheseIndex != -1) #if($parentheseIndex != -1)
#set($comment=$column.columnComment.substring(0, $parentheseIndex)) #set($comment=$column.columnComment.substring(0, $parentheseIndex))
@ -101,6 +102,7 @@
</div> </div>
#end #end
#end #end
#end
#end #end
</form> </form>
</div> </div>

View File

@ -14,7 +14,8 @@
<form class="form-horizontal m" id="form-${businessName}-edit" th:object="${${className}}"> <form class="form-horizontal m" id="form-${businessName}-edit" th:object="${${className}}">
<input name="${pkColumn.javaField}" th:field="*{${pkColumn.javaField}}" type="hidden"> <input name="${pkColumn.javaField}" th:field="*{${pkColumn.javaField}}" type="hidden">
#foreach($column in $columns) #foreach($column in $columns)
#if($column.edit && !$column.superColumn && !$column.pk) #if($column.edit && !$column.pk)
#if(($column.usableColumn) || (!$column.superColumn))
#set($parentheseIndex=$column.columnComment.indexOf("")) #set($parentheseIndex=$column.columnComment.indexOf(""))
#if($parentheseIndex != -1) #if($parentheseIndex != -1)
#set($comment=$column.columnComment.substring(0, $parentheseIndex)) #set($comment=$column.columnComment.substring(0, $parentheseIndex))
@ -101,6 +102,7 @@
</div> </div>
#end #end
#end #end
#end
#end #end
</form> </form>
</div> </div>