后台资产展示代码

master
冷调 2024-08-27 11:15:26 +08:00
parent 6a6d939fa5
commit 58608c92fe
3 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ public class Children extends BaseEntity {
* *
*/ */
@Excel(name = "数据源id") @Excel(name = "数据源id")
private Integer assetId; private Long assetId;
public TableInfoRep tableInfoRep(Children children) { public TableInfoRep tableInfoRep(Children children) {

View File

@ -46,7 +46,7 @@ public class TableInfoRep {
@Excel(name = "是否核心 'Y'是 'N'不是") @Excel(name = "是否核心 'Y'是 'N'不是")
private String isCenter; private String isCenter;
private Integer assetId; private Long assetId;
private List<TableData> tableDataList; private List<TableData> tableDataList;

View File

@ -20,7 +20,7 @@ import java.util.List;
public class TableInfoTreeRep { public class TableInfoTreeRep {
//主键 //主键
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.AUTO)
private Integer id; private Long id;
private Children children; private Children children;