Update PmsProductCategoryWithChildrenItem.java

This commit is contained in:
macro 2020-05-11 20:26:02 +08:00
parent db6790d92c
commit a345b6e3e9

View File

@ -1,6 +1,7 @@
package com.macro.mall.dto; package com.macro.mall.dto;
import com.macro.mall.model.PmsProductCategory; import com.macro.mall.model.PmsProductCategory;
import io.swagger.annotations.ApiModelProperty;
import java.util.List; import java.util.List;
@ -8,6 +9,7 @@ import java.util.List;
* Created by macro on 2018/5/25. * Created by macro on 2018/5/25.
*/ */
public class PmsProductCategoryWithChildrenItem extends PmsProductCategory { public class PmsProductCategoryWithChildrenItem extends PmsProductCategory {
@ApiModelProperty("子级分类")
private List<PmsProductCategory> children; private List<PmsProductCategory> children;
public List<PmsProductCategory> getChildren() { public List<PmsProductCategory> getChildren() {