Merge remote-tracking branch 'origin/main'

This commit is contained in:
Jack 2025-09-29 17:30:50 +08:00
commit c438e4b3b9

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);