server/src/main/java/com/doumee/dao/business/model/Category.java
@@ -71,6 +71,9 @@ @ApiModelProperty(value = "上级名称") @TableField(exist = false) private String parentName; @ApiModelProperty(value = "上上级名称") @TableField(exist = false) private String rootName; @ApiModelProperty(value = "操作人名字") @TableField(exist = false) private String editorName; @@ -83,4 +86,8 @@ @ApiModelProperty(value = "子集集合") @TableField(exist = false) private List<Category> childList; @ApiModelProperty(value = "子集集合(批量导入对比下集)") @TableField(exist = false) private List<Category> childMatchList; }