package com.oying.modules.pc.store.view; import lombok.Data; import java.util.List; @Data public class StoreCategoryMerchantView { private Long categoryId; private Long storeId; private Long parentId; private String name; private Integer sortWeight; private Integer active; private List children; }