新增店铺二级分类选择

This commit is contained in:
liyj 2025-09-29 17:11:37 +08:00
parent eade3040d2
commit 37d6173697

View File

@ -2301,6 +2301,11 @@ public class ShopStoreBaseServiceImpl extends BaseServiceImpl<ShopStoreBaseMappe
base.setStore_category_id(store_category_id);
}
Integer store_2nd_category_id = getParameter("store_2nd_category_id", Integer.class);
if (store_2nd_category_id != null) {
base.setStore_2nd_category_id(store_2nd_category_id);
}
Integer store_is_selfsupport = getParameter("store_is_selfsupport", Integer.class);
if (store_is_selfsupport != null) {
base.setStore_is_selfsupport(store_is_selfsupport);