package com.oying.modules.pc.store.domain.dto; import lombok.Data; @Data public class StoreCategoryUpdateRequest { private Long storeId; private Long parentId; private Long categoryId; private String name; private Integer sortWeight; private Integer active; }