Update PmsProductCategoryNode.java

This commit is contained in:
macro 2021-08-07 15:48:20 +08:00
parent 26f4d0295b
commit d2137b96a3

View File

@ -1,6 +1,7 @@
package com.macro.mall.portal.domain;
import com.macro.mall.model.PmsProductCategory;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
@ -13,5 +14,6 @@ import java.util.List;
@Getter
@Setter
public class PmsProductCategoryNode extends PmsProductCategory {
@ApiModelProperty("子分类集合")
private List<PmsProductCategoryNode> children;
}