update 优化 TreeEntity 树实体 去除未知泛型

This commit is contained in:
疯狂的狮子li
2022-03-15 13:22:00 +08:00
parent eaf6fdc445
commit e908329cc0
6 changed files with 8 additions and 9 deletions

View File

@@ -28,7 +28,7 @@ import com.ruoyi.common.core.web.domain.TreeEntity;
#if($table.crud || $table.sub)
#set($Entity="BaseEntity")
#elseif($table.tree)
#set($Entity="TreeEntity")
#set($Entity="TreeEntity<${ClassName}Bo>")
#end
@Data

View File

@@ -26,7 +26,7 @@ import com.ruoyi.common.core.web.domain.TreeEntity;
#if($table.crud || $table.sub)
#set($Entity="BaseEntity")
#elseif($table.tree)
#set($Entity="TreeEntity")
#set($Entity="TreeEntity<${ClassName}>")
#end
@Data
@EqualsAndHashCode(callSuper = true)